Index: lib/uninstall.js |
=================================================================== |
--- a/lib/uninstall.js |
+++ b/lib/uninstall.js |
@@ -43,20 +43,20 @@ |
else if (downlCount < 180) |
downlCount = "90-179"; |
else |
downlCount = "180+"; |
} |
search.push("notificationDownloadCount=" + encodeURIComponent(downlCount)); |
- chrome.runtime.setUninstallURL(Utils.getDocLink("uninstalled") + "&" + |
- search.join("&")); |
+ browser.runtime.setUninstallURL(Utils.getDocLink("uninstalled") + "&" + |
+ search.join("&")); |
} |
// The uninstall URL contains the notification download count as a parameter, |
// therefore we must wait for preferences to be loaded before generating the |
// URL and we need to re-generate it each time the notification data changes. |
-if ("setUninstallURL" in chrome.runtime) |
+if ("setUninstallURL" in browser.runtime) |
{ |
Prefs.untilLoaded.then(setUninstallURL); |
Prefs.on("notificationdata", setUninstallURL); |
} |