Commit ed7f168e authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame 🎃 Committed by morgan
Browse files

fixup! Firefox preference overrides.

BB 41131: Make sure background tasks are not used for shutdown cleanup.

privacy.sanitize.sanitizeOnShutdown (disabled by default) might try to
use background tasks, without checking whether they are actually
available (they are not for us, as we disable them at build time).
parent f970b38c
Loading
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -72,6 +72,12 @@ pref("browser.helperApps.deleteTempFileOnExit", true);
// Prevent download stuffing / DOS (tor-browser#41764)
pref("browser.download.enable_spam_prevention", true);

// tor-browser#41131: This is normally gated on
// privacy.sanitize.sanitizeOnShutdown, which is false by default. But in case
// users enable it, make sure background tasks are not used for this, since we
// disable them as well (but at compile time).
pref("network.cache.shutdown_purge_in_background_task", false);

// Misc privacy: Disk
pref("signon.rememberSignons", false, locked);
pref("browser.formfill.enable", false, locked);