From 40a355a42d4a9444dc753c04c6608dade2f06a23 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 03:13:27 +0200 Subject: Adding upstream version 125.0.1. Signed-off-by: Daniel Baumann --- security/manager/ssl/RemoteSecuritySettings.sys.mjs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'security/manager/ssl/RemoteSecuritySettings.sys.mjs') 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( -- cgit v1.2.3