tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 0005d5ba37d31857fd4a193ff70e560791ca0cb6
parent 96a3d28b3f9368e5d9333b04ccff020d4fa27d2b
Author: Chris DuPuis <cdupuis@mozilla.com>
Date:   Tue, 25 Nov 2025 00:58:46 +0000

Bug 2001395 - Set Fx Backup prefs to enabled for Windows by default r=nrishel

Instead of defaulting the availability of Fx Backup to false, we
default it to true on Windows. There is still a Nimbus setting
in place that controls whether or not Fx Backup is actually
shown to the user.

Differential Revision: https://phabricator.services.mozilla.com/D273927

Diffstat:
Mbrowser/app/profile/firefox.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js @@ -3441,8 +3441,8 @@ pref("browser.backup.scheduled.enabled", false); // Prefs to control visibility and usability of the create backup and restore from backup features. #ifdef XP_WIN - pref("browser.backup.archive.enabled", false); - pref("browser.backup.restore.enabled", false); + pref("browser.backup.archive.enabled", true); + pref("browser.backup.restore.enabled", true); #else pref("browser.backup.archive.enabled", false); pref("browser.backup.restore.enabled", false);