This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch tor-browser-91.9.0esr-11.5-1 in repository tor-browser.
commit 190a4168bcbc732150a4f89dcefdf1ba061fbbd9 Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Thu Apr 7 14:53:43 2022 +0200
fixup! squash! Bug 27476: Implement about:torconnect captive portal within Tor Browser
Bug 40875: removed "Connect" option from final error --- browser/components/torconnect/content/aboutTorConnect.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/browser/components/torconnect/content/aboutTorConnect.js b/browser/components/torconnect/content/aboutTorConnect.js index 2ef0b8597948f..3945da741f9ea 100644 --- a/browser/components/torconnect/content/aboutTorConnect.js +++ b/browser/components/torconnect/content/aboutTorConnect.js @@ -546,8 +546,7 @@ class AboutTorConnect { this.setProgress(state ? state.ErrorDetails : "", false); this.hideButtons(); this.show(this.elements.restartButton); - this.show(this.elements.configureButton); - this.show(this.elements.connectButton, true); + this.show(this.elements.configureButton, true); }
initElements(direction) {