Skip to content
Snippets Groups Projects
Verified Commit 8479f2af authored by henry's avatar henry Committed by Pier Angelo Vendrame
Browse files

Bug 43109: Hide Firefox Relay from settings.

This should remain disabled, see tor-browser#42814.
parent 8af90aaa
Branches
Tags
No related merge requests found
......@@ -3041,8 +3041,12 @@ var gPrivacyPane = {
},
_updateRelayIntegrationUI() {
document.getElementById("relayIntegrationBox").hidden =
!FirefoxRelay.isAvailable;
// In Base Browser, we always hide the integration checkbox since
// FirefoxRelay should remain disabled.
// See tor-browser#43109 and tor-browser#42814.
// NOTE: FirefoxRelay.isAvailable will be true whenever
// FirefoxRelay.isDisabled is true.
document.getElementById("relayIntegrationBox").hidden = true;
document.getElementById("relayIntegration").checked =
FirefoxRelay.isAvailable && !FirefoxRelay.isDisabled;
},
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment