From fa9ed6d0ade074e1178fbfef2c2fa112c68ae7f6 Mon Sep 17 00:00:00 2001 From: Akash Yadav Date: Wed, 22 Jan 2025 12:22:33 +0530 Subject: [PATCH] fix: actually enable safe browsing --- patches/preferences/ironfox.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/preferences/ironfox.js b/patches/preferences/ironfox.js index f462a25..44abe43 100644 --- a/patches/preferences/ironfox.js +++ b/patches/preferences/ironfox.js @@ -8,8 +8,8 @@ pref("network.trr.mode", 5); /// Enable Safe Browsing by default -pref("browser.safebrowsing.features.malware.update", false); -pref("browser.safebrowsing.features.phishing.update", false); +pref("browser.safebrowsing.features.malware.update", true); +pref("browser.safebrowsing.features.phishing.update", true); /// Set Safe Browsing API proxy pref("browser.safebrowsing.provider.google4.updateURL", "https://safebrowsing.ironfoxoss.org/v4/threatListUpdates:fetch?$ct=application/x-protobuf&key=%GOOGLE_SAFEBROWSING_API_KEY%&$httpMethod=POST");