tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 45e1ba883f45301c5a5e4d49f92864f2e38d98e0
parent f0ea03d24401de4aada28c6f50e5669e949255dd
Author: Benjamin VanderSloot <bvandersloot@mozilla.com>
Date:   Wed, 31 Dec 2025 17:22:02 +0000

Bug 2008101 - Disable privacy.annotate_channels.strict_list.enabled on ETP standard Fenix channels - r=timhuang,android-reviewers,Roger

Differential Revision: https://phabricator.services.mozilla.com/D277702

Diffstat:
Mmobile/android/android-components/components/browser/engine-gecko/src/main/java/mozilla/components/browser/engine/gecko/ext/TrackingProtectionPolicy.kt | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mobile/android/android-components/components/browser/engine-gecko/src/main/java/mozilla/components/browser/engine/gecko/ext/TrackingProtectionPolicy.kt b/mobile/android/android-components/components/browser/engine-gecko/src/main/java/mozilla/components/browser/engine/gecko/ext/TrackingProtectionPolicy.kt @@ -67,7 +67,8 @@ internal fun TrackingProtectionPolicy.getStrictSocialTrackingProtection(): Boole internal fun TrackingProtectionPolicy.getEtpLevel(): Int { return when { trackingCategories.contains(TrackingCategory.NONE) -> ContentBlocking.EtpLevel.NONE - else -> ContentBlocking.EtpLevel.STRICT + trackingCategories.contains(TrackingCategory.STRICT) -> ContentBlocking.EtpLevel.STRICT + else -> ContentBlocking.EtpLevel.DEFAULT } }