From 0c2df08d783549f74801e060d5656f9f1f7f22ac Mon Sep 17 00:00:00 2001 From: hackademix Date: Mon, 29 Apr 2019 09:43:14 +0200 Subject: Reference internal pages as absolute URLs for Chromium compatibility. --- src/ui/popup.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/ui') diff --git a/src/ui/popup.js b/src/ui/popup.js index 87ac73e..310ecac 100644 --- a/src/ui/popup.js +++ b/src/ui/popup.js @@ -166,8 +166,10 @@ addEventListener("unload", e => { sitesUI.onChange = (row) => { pendingReload(!row.temp2perm); if (optionsClosed) return; - browser.tabs.query({url: browser.runtime.getManifest().options_ui.page }) - .then(tabs => { + browser.tabs.query({ + url: browser.extension.getURL( + browser.runtime.getManifest().options_ui.page) + }).then(tabs => { browser.tabs.remove(tabs.map(t => t.id)); }); optionsClosed = true; -- cgit v1.2.3