From ad5f6b1786ad1dc09b88ed9eef9cd558d726a665 Mon Sep 17 00:00:00 2001 From: hackademix Date: Sun, 27 Oct 2019 21:33:21 +0000 Subject: [Tor] Treat .onion sites whose protocol is HTTP as if it was HTTPS. --- src/ui/ui.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/ui') diff --git a/src/ui/ui.js b/src/ui/ui.js index 5c358be..7025ce6 100644 --- a/src/ui/ui.js +++ b/src/ui/ui.js @@ -38,11 +38,15 @@ var UI = (() => { UI.xssUserChoices = m.xssUserChoices; UI.local = m.local; UI.sync = m.sync; - if (UI.local && !UI.local.debug) { - debug = () => {}; // be quiet! - } + if (UI.local) { + if (!UI.local.debug) { + debug = () => {}; // be quiet! + } document.documentElement.classList.toggle("tor", !!UI.local.isTorBrowser); + if (UI.local.isTorBrowser) { + Sites.onionSecure = true; + } } resolve(); if (UI.onSettings) UI.onSettings(); -- cgit v1.2.3