From 5ee99b5af65b478c396d2f9a346c03f7984607f9 Mon Sep 17 00:00:00 2001 From: fxbrit <8320298-fxbrit@users.noreply.gitlab.com> Date: Sat, 3 Dec 2022 15:15:22 +0100 Subject: [PATCH] fix fuzz in all patches --- patches/sed-patches/disable-pocket.patch | 4 ++-- patches/ui-patches/website-appearance-ui-rfp.patch | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/patches/sed-patches/disable-pocket.patch b/patches/sed-patches/disable-pocket.patch index 25e4056..adf3656 100644 --- a/patches/sed-patches/disable-pocket.patch +++ b/patches/sed-patches/disable-pocket.patch @@ -27,9 +27,9 @@ diff --git a/browser/components/moz.build b/browser/components/moz.build index 71a1b85..ed3b6d1 100644 --- a/browser/components/moz.build +++ b/browser/components/moz.build -@@ -42,7 +42,6 @@ DIRS += [ +@@ -44,7 +44,6 @@ "originattributes", - "ion", + "pagedata", "places", - "pocket", "preferences", diff --git a/patches/ui-patches/website-appearance-ui-rfp.patch b/patches/ui-patches/website-appearance-ui-rfp.patch index 0de5504..6cf70fe 100644 --- a/patches/ui-patches/website-appearance-ui-rfp.patch +++ b/patches/ui-patches/website-appearance-ui-rfp.patch @@ -1,22 +1,22 @@ --- a/browser/components/preferences/main.js +++ b/browser/components/preferences/main.js -@@ -3737,6 +3737,7 @@ const AppearanceChooser = { +@@ -3713,6 +3713,7 @@ + FORCED_COLORS_QUERY.addEventListener("change", this); - SYSTEM_DARK_MODE_QUERY.addEventListener("change", this); Services.prefs.addObserver(PREF_USE_SYSTEM_COLORS, this); + Services.prefs.addObserver("privacy.resistFingerprinting", this); Services.obs.addObserver(this, "look-and-feel-changed"); this._update(); }, -@@ -3756,6 +3757,7 @@ const AppearanceChooser = { +@@ -3732,6 +3733,7 @@ destroy() { Services.prefs.removeObserver(PREF_USE_SYSTEM_COLORS, this); + Services.prefs.removeObserver("privacy.resistFingerprinting", this); Services.obs.removeObserver(this, "look-and-feel-changed"); FORCED_COLORS_QUERY.removeEventListener("change", this); - SYSTEM_DARK_MODE_QUERY.removeEventListener("change", this); -@@ -3798,5 +3800,33 @@ const AppearanceChooser = { + }, +@@ -3771,5 +3773,33 @@ (AppConstants.platform == "win" || !Services.prefs.getBoolPref(PREF_USE_SYSTEM_COLORS)); this.warning.hidden = !forcingColorsAndNoColorSchemeSupport;