summaryrefslogtreecommitdiff
path: root/ext/bg/js/context-main.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-02-12 23:07:19 -0500
committerGitHub <noreply@github.com>2021-02-12 23:07:19 -0500
commitdaea80942c7a89b43c6aa4579cbc2fa0f198b0b0 (patch)
tree9ba5e2ee3c5d5cf0c62206d98e09ab4747e2ba57 /ext/bg/js/context-main.js
parent4053d9b2fac82108f701788c511aedaf988de4c5 (diff)
Fix old settings page not being used properly (#1376)
Diffstat (limited to 'ext/bg/js/context-main.js')
-rw-r--r--ext/bg/js/context-main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/context-main.js b/ext/bg/js/context-main.js
index 98716958..5cc56745 100644
--- a/ext/bg/js/context-main.js
+++ b/ext/bg/js/context-main.js
@@ -40,7 +40,7 @@ class DisplayController {
this._setupHotkeys();
- const optionsPageUrl = optionsFull.global.useSettingsV2 ? '/settings.html' : manifest.options_ui.page;
+ const optionsPageUrl = optionsFull.global.useSettingsV2 ? manifest.options_ui.page : '/settings-old.html';
this._setupButtonEvents('.action-open-settings', 'openSettingsPage', chrome.runtime.getURL(optionsPageUrl));
this._setupButtonEvents('.action-open-permissions', null, chrome.runtime.getURL('/permissions.html'));