Index: lib/prefs.js |
diff --git a/lib/prefs.js b/lib/prefs.js |
index 632e3aa03936d8d10a02cfbc8ecd92b58f9721af..33b2a92f962367f2b3d9d750e72609f7f68c5f24 100644 |
--- a/lib/prefs.js |
+++ b/lib/prefs.js |
@@ -116,7 +116,8 @@ defaults.notificationurl = "https://notification.adblockplus.org/notification.js |
*/ |
defaults.blocked_total = 0; |
/** |
- * Whether to show a badge in the toolbar icon indicating the number of blocked ads. |
+ * Whether to show a badge in the toolbar icon indicating the number |
+ * of blocked ads. |
* |
* @type {boolean} |
*/ |
@@ -260,7 +261,8 @@ function init() |
let prefs = Object.keys(defaults); |
prefs.forEach(addPreference); |
- let localLoaded = new Promise(resolve => { |
+ let localLoaded = new Promise(resolve => |
+ { |
ext.storage.get(prefs.map(prefToKey), items => |
{ |
for (let key in items) |
@@ -270,7 +272,8 @@ function init() |
}); |
}); |
- let managedLoaded = new Promise(resolve => { |
+ let managedLoaded = new Promise(resolve => |
+ { |
if (require("info").platform == "chromium" && "managed" in chrome.storage) |
{ |
chrome.storage.managed.get(null, items => |
@@ -288,9 +291,7 @@ function init() |
}); |
} |
else |
- { |
resolve(); |
- } |
}); |
function onLoaded() |