[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/mullvad-browser][mullvad-browser-140.2.0esr-15.0-1] fixup! Firefox preference overrides.



Title: GitLab

morgan pushed to branch mullvad-browser-140.2.0esr-15.0-1 at The Tor Project / Applications / Mullvad Browser

Commits:

  • ed7f168e
    by Pier Angelo Vendrame at 2025-08-14T16:32:44+00:00
    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).
    

1 changed file:

Changes:

  • browser/app/profile/001-base-profile.js
    ... ... @@ -72,6 +72,12 @@ pref("browser.helperApps.deleteTempFileOnExit", true);
    72 72
     // Prevent download stuffing / DOS (tor-browser#41764)
    
    73 73
     pref("browser.download.enable_spam_prevention", true);
    
    74 74
     
    
    75
    +// tor-browser#41131: This is normally gated on
    
    76
    +// privacy.sanitize.sanitizeOnShutdown, which is false by default. But in case
    
    77
    +// users enable it, make sure background tasks are not used for this, since we
    
    78
    +// disable them as well (but at compile time).
    
    79
    +pref("network.cache.shutdown_purge_in_background_task", false);
    
    80
    +
    
    75 81
     // Misc privacy: Disk
    
    76 82
     pref("signon.rememberSignons", false, locked);
    
    77 83
     pref("browser.formfill.enable", false, locked);
    

  • _______________________________________________
    tor-commits mailing list -- tor-commits@xxxxxxxxxxxxxxxxxxxx
    To unsubscribe send an email to tor-commits-leave@xxxxxxxxxxxxxxxxxxxx