Skip to content

Commit 37c919c

Browse files
committed
Fix lint issue
1 parent aee2b4b commit 37c919c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/src/main/java/com/duckduckgo/app/browser/BrowserActivity.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,9 @@ open class BrowserActivity : DuckDuckGoActivity() {
347347
super.onCreate(savedInstanceState = newInstanceState, daggerInject = false)
348348

349349
// safety check: if the omnibar type is SPLIT but the feature is disabled, reset to SINGLE_TOP
350-
if (settingsDataStore.omnibarType == OmnibarType.SPLIT && (!browserFeatures.useUnifiedOmnibarLayout().isEnabled() || !browserFeatures.splitOmnibar().isEnabled())) {
350+
if (settingsDataStore.omnibarType == OmnibarType.SPLIT &&
351+
(!browserFeatures.useUnifiedOmnibarLayout().isEnabled() || !browserFeatures.splitOmnibar().isEnabled())
352+
) {
351353
settingsDataStore.omnibarType = OmnibarType.SINGLE_TOP
352354
}
353355

0 commit comments

Comments
 (0)