diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:14:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:14:29 +0000 |
commit | fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch) | |
tree | 4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /security/manager/ssl/RemoteSecuritySettings.sys.mjs | |
parent | Releasing progress-linux version 124.0.1-1~progress7.99u1. (diff) | |
download | firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'security/manager/ssl/RemoteSecuritySettings.sys.mjs')
-rw-r--r-- | security/manager/ssl/RemoteSecuritySettings.sys.mjs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/manager/ssl/RemoteSecuritySettings.sys.mjs b/security/manager/ssl/RemoteSecuritySettings.sys.mjs index 5283a21a3c..7781aff9c4 100644 --- a/security/manager/ssl/RemoteSecuritySettings.sys.mjs +++ b/security/manager/ssl/RemoteSecuritySettings.sys.mjs @@ -29,7 +29,7 @@ ChromeUtils.defineLazyGetter(lazy, "log", () => { "resource://gre/modules/Console.sys.mjs" ); return new ConsoleAPI({ - prefix: "RemoteSecuritySettings.jsm", + prefix: "RemoteSecuritySettings", // tip: set maxLogLevel to "debug" and use log.debug() to create detailed // messages during development. See LOG_LEVELS in Console.sys.mjs for details. maxLogLevel: "error", @@ -393,7 +393,7 @@ class IntermediatePreloads { ); } - async onObservePollEnd(subject, topic, data) { + async onObservePollEnd(subject, topic) { lazy.log.debug(`onObservePollEnd ${subject} ${topic}`); try { @@ -404,7 +404,7 @@ class IntermediatePreloads { } // This method returns a promise to RemoteSettingsClient.maybeSync method. - async onSync({ data: { current, created, updated, deleted } }) { + async onSync({ data: { deleted } }) { if (!Services.prefs.getBoolPref(INTERMEDIATES_ENABLED_PREF, true)) { lazy.log.debug("Intermediate Preloading is disabled"); return; @@ -538,7 +538,7 @@ class CRLiteFilters { } } - async onObservePollEnd(subject, topic, data) { + async onObservePollEnd() { if (!Services.prefs.getBoolPref(CRLITE_FILTERS_ENABLED_PREF, true)) { lazy.log.debug("CRLite filter downloading is disabled"); Services.obs.notifyObservers( |