From b27477ceb969e5edb4bc84b680f6e7041dc11e08 Mon Sep 17 00:00:00 2001 From: Jonathan Straub Date: Tue, 30 Mar 2021 16:21:15 +0200 Subject: [PATCH] Changed WebAudio pref to default to false instead of locking it This enables users to enable it manually in their about:config instead of having to edit this file everytime after an update. Helpful for librewolf-community/browser/linux#173 --- librewolf.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librewolf.cfg b/librewolf.cfg index 72b805e..d82237b 100644 --- a/librewolf.cfg +++ b/librewolf.cfg @@ -1893,7 +1893,7 @@ lockPref("dom.enable_user_timing", false); // Pref : Disable Web Audio API // https://bugzilla.mozilla.org/show_bug.cgi?id=1288359 // Avoid fingerprinting -lockPref("dom.webaudio.enabled", false); +defaultPref("dom.webaudio.enabled", false); // Pref : When geolocation is enabled, don't log geolocation requests to the console lockPref("geo.wifi.logging.enabled", false);