Skip to content
Snippets Groups Projects
Commit 9a0b1bce 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 #42814.
parent 58d8c2fa
Branches
Tags
1 merge request!1462BB/TB 43584: Rebased stable again onto 128.9.0esr build2
......@@ -3036,8 +3036,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