From 16dec3882ec9f78b5276ee5689530bfa8c3392a3 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Fri, 12 Feb 2021 23:07:19 -0500 Subject: Fix old settings page not being used properly (#1376) --- ext/bg/js/backend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/bg/js/backend.js') diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 4a3b7663..1c4cb4d7 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -1805,7 +1805,7 @@ class Backend { async _openSettingsPage(mode) { const {useSettingsV2} = this._options.global; const manifest = chrome.runtime.getManifest(); - const url = chrome.runtime.getURL(useSettingsV2 ? '/bg/settings2.html' : manifest.options_ui.page); + const url = chrome.runtime.getURL(useSettingsV2 ? manifest.options_ui.page : '/bg/settings.html'); switch (mode) { case 'existingOrNewTab': if (useSettingsV2) { -- cgit v1.2.3