Pier Angelo Vendrame pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
- 
6b115b94
by Henry Wilkes at 2024-09-11T09:02:23+02:00
 
1 changed file:
Changes:
| ... | ... | @@ -3046,8 +3046,12 @@ var gPrivacyPane = { | 
| 3046 | 3046 |    },
 | 
| 3047 | 3047 | |
| 3048 | 3048 |    _updateRelayIntegrationUI() {
 | 
| 3049 | -    document.getElementById("relayIntegrationBox").hidden =
 | 
|
| 3050 | -      !FirefoxRelay.isAvailable;
 | 
|
| 3049 | +    // In Base Browser, we always hide the integration checkbox since
 | 
|
| 3050 | +    // FirefoxRelay should remain disabled.
 | 
|
| 3051 | +    // See tor-browser#43109 and tor-browser#42814.
 | 
|
| 3052 | +    // NOTE: FirefoxRelay.isAvailable will be true whenever
 | 
|
| 3053 | +    // FirefoxRelay.isDisabled is true.
 | 
|
| 3054 | +    document.getElementById("relayIntegrationBox").hidden = true;
 | 
|
| 3051 | 3055 |      document.getElementById("relayIntegration").checked =
 | 
| 3052 | 3056 |        FirefoxRelay.isAvailable && !FirefoxRelay.isDisabled;
 | 
| 3053 | 3057 |    },
 |