From 1ec362a64a0fd2a17ab57903303aef213619e48a Mon Sep 17 00:00:00 2001 From: Alex Catarineu Date: Tue, 15 Oct 2019 22:54:10 +0200 Subject: [PATCH] Bug 32092: Fix Tor Browser Support link in preferences --- browser/components/preferences/in-content/preferences.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/browser/components/preferences/in-content/preferences.js b/browser/components/preferences/in-content/preferences.js index 88f141170f815..9c97c33a8b2a6 100644 --- a/browser/components/preferences/in-content/preferences.js +++ b/browser/components/preferences/in-content/preferences.js @@ -122,10 +122,7 @@ function init_all() { gotoPref().then(() => { let helpButton = document.getElementById("helpButton"); - let helpUrl = - Services.urlFormatter.formatURLPref("app.support.baseURL") + - "preferences"; - helpButton.setAttribute("href", helpUrl); + helpButton.setAttribute("href", "https://support.torproject.org/tbb"); document.getElementById("addonsButton").addEventListener("click", () => { let mainWindow = window.docShell.rootTreeItem.domWindow; -- GitLab