Skip to content

Commit 6beb307

Browse files
committed
Bug 1988612 - enable CRLite filter downloads from the priority channel on android. r=keeler
Differential Revision: https://phabricator.services.mozilla.com/D264868
1 parent 45d6887 commit 6beb307

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

modules/libpref/init/StaticPrefList.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17161,7 +17161,11 @@
1716117161
# - "compat" => clubcards that contain priority revocations
1716217162
- name: security.pki.crlite_channel
1716317163
type: String
17164+
#ifdef ANDROID
17165+
value: "compat"
17166+
#else
1716417167
value: "default"
17168+
#endif
1716517169
mirror: never
1716617170

1716717171
# The number of SCTs that must be "covered" by a CRLite filter before

modules/libpref/init/all.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,7 @@ pref("security.remote_settings.intermediates.enabled", true);
5656
pref("security.remote_settings.intermediates.downloads_per_poll", 5000);
5757
pref("security.remote_settings.intermediates.parallel_downloads", 8);
5858

59-
#if !defined(MOZ_WIDGET_ANDROID)
60-
pref("security.remote_settings.crlite_filters.enabled", true);
61-
#else
62-
pref("security.remote_settings.crlite_filters.enabled", false);
63-
#endif
59+
pref("security.remote_settings.crlite_filters.enabled", true);
6460

6561
pref("security.osreauthenticator.blank_password", false);
6662
pref("security.osreauthenticator.password_last_changed_lo", 0);

0 commit comments

Comments
 (0)