mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-01-27 15:29:19 -05:00
21 lines
1.0 KiB
Diff
21 lines
1.0 KiB
Diff
diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt
|
|
index 8913d9f230..78212d438c 100644
|
|
--- a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt
|
|
+++ b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt
|
|
@@ -758,13 +758,13 @@ class Settings(private val appContext: Context) : PreferencesHolder {
|
|
)
|
|
|
|
val shouldUseCookieBannerPrivateModeDefaultValue: Boolean
|
|
- get() = cookieBannersSection[CookieBannersSection.FEATURE_SETTING_VALUE_PBM] == 1
|
|
+ get() = true
|
|
|
|
val shouldUseCookieBanner: Boolean
|
|
get() = cookieBannersSection[CookieBannersSection.FEATURE_SETTING_VALUE] == 1
|
|
|
|
val shouldShowCookieBannerUI: Boolean
|
|
- get() = cookieBannersSection[CookieBannersSection.FEATURE_UI] == 1
|
|
+ get() = true
|
|
|
|
val shouldEnableCookieBannerDetectOnly: Boolean
|
|
get() = cookieBannersSection[CookieBannersSection.FEATURE_SETTING_DETECT_ONLY] == 1
|