This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch tor-browser-91.7.0esr-11.0-1 in repository tor-browser.
The following commit(s) were added to refs/heads/tor-browser-91.7.0esr-11.0-1 by this push: new 4dbb0a34b47a8 fixup! Bug 27476: Implement about:torconnect captive portal within Tor Browser 4dbb0a34b47a8 is described below
commit 4dbb0a34b47a8c412f4bf291619ac851a0c6bbcc Author: Richard Pospesel richard@torproject.org AuthorDate: Mon Dec 6 13:20:20 2021 +0100
fixup! Bug 27476: Implement about:torconnect captive portal within Tor Browser --- browser/base/content/browser-siteIdentity.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/browser/base/content/browser-siteIdentity.js b/browser/base/content/browser-siteIdentity.js index 2111e67c5d097..6dcfbd1e491fc 100644 --- a/browser/base/content/browser-siteIdentity.js +++ b/browser/base/content/browser-siteIdentity.js @@ -57,7 +57,10 @@ var gIdentityHandler = { * RegExp used to decide if an about url should be shown as being part of * the browser UI. */ - _secureInternalPages: (AppConstants.TOR_BROWSER_UPDATE ? /^(?:accounts|addons|cache|certificate|config|crashes|downloads|license|logins|preferences|protections|rights|sessionrestore|support|welcomeback|ion|tor|tbupdate)(?:[?#]|$)/i : /^(?:accounts|addons|cache|certificate|config|crashes|downloads|license|logins|preferences|protections|rights|sessionrestore|support|welcomeback|ion|tor|torconnect)(?:[?#]|$)/i), + _secureInternalPages: (AppConstants.TOR_BROWSER_UPDATE ? + /^(?:accounts|addons|cache|certificate|config|crashes|downloads|license|logins|preferences|protections|rights|sessionrestore|support|welcomeback|ion|tor|torconnect|tbupdate)(?:[?#]|$)/i : + /^(?:accounts|addons|cache|certificate|config|crashes|downloads|license|logins|preferences|protections|rights|sessionrestore|support|welcomeback|ion|tor|torconnect)(?:[?#]|$)/i), +
/** * Whether the established HTTPS connection is considered "broken".
tbb-commits@lists.torproject.org