Files
IronFox/patches/disable-reporting-site-issues.patch
2025-04-01 14:19:28 -04:00

88 lines
3.3 KiB
Diff

diff --git a/browser/extensions/moz.build b/browser/extensions/moz.build
index 3c6e7eb886..d923333aa1 100644
--- a/browser/extensions/moz.build
+++ b/browser/extensions/moz.build
@@ -8,7 +8,6 @@ DIRS += [
"formautofill",
"screenshots",
"webcompat",
- "report-site-issue",
"pictureinpicture",
"search-detection",
]
diff --git a/browser/locales/filter.py b/browser/locales/filter.py
index 9155947e43..8a4401ba58 100644
--- a/browser/locales/filter.py
+++ b/browser/locales/filter.py
@@ -15,7 +15,6 @@ def test(mod, path, entity=None):
"devtools/startup",
"browser",
"browser/extensions/formautofill",
- "browser/extensions/report-site-issue",
"extensions/spellcheck",
"other-licenses/branding/firefox",
"browser/branding/official",
diff --git a/browser/locales/l10n.toml b/browser/locales/l10n.toml
index 31baf8c152..0bfbb5c35d 100644
--- a/browser/locales/l10n.toml
+++ b/browser/locales/l10n.toml
@@ -135,10 +135,6 @@ locales = [
reference = "browser/extensions/formautofill/locales/en-US/**"
l10n = "{l}browser/extensions/formautofill/**"
-[[paths]]
- reference = "browser/extensions/report-site-issue/locales/en-US/**"
- l10n = "{l}browser/extensions/report-site-issue/**"
-
[[includes]]
path = "toolkit/locales/l10n.toml"
diff --git a/browser/locales/Makefile.in b/browser/locales/Makefile.in
index 1b8f21be1c..8f0fbf6def 100644
--- a/browser/locales/Makefile.in
+++ b/browser/locales/Makefile.in
@@ -55,7 +55,6 @@ l10n-%:
ifneq (,$(wildcard ../extensions/formautofill/locales))
@$(MAKE) -C ../extensions/formautofill/locales AB_CD=$* XPI_NAME=locale-$*
endif
- @$(MAKE) -C ../extensions/report-site-issue/locales AB_CD=$* XPI_NAME=locale-$*
@$(MAKE) -C ../../devtools/client/locales AB_CD=$* XPI_NAME=locale-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
@$(MAKE) -C ../../devtools/startup/locales AB_CD=$* XPI_NAME=locale-$* XPI_ROOT_APPID='$(XPI_ROOT_APPID)'
@$(MAKE) l10n AB_CD=$* XPI_NAME=locale-$* PREF_DIR=$(PREF_DIR)
@@ -76,7 +75,6 @@ endif
@$(MAKE) -C ../../devtools/startup/locales chrome AB_CD=$*
@$(MAKE) chrome AB_CD=$*
@$(MAKE) -C $(DEPTH)/$(MOZ_BRANDING_DIRECTORY)/locales chrome AB_CD=$*
- @$(MAKE) -C ../extensions/report-site-issue/locales chrome AB_CD=$*
package-win32-installer: $(SUBMAKEFILES)
$(MAKE) -C ../installer/windows CONFIG_DIR=l10ngen ZIP_IN='$(ZIP_OUT)' installer
diff --git a/mobile/android/fenix/app/nimbus.fml.yaml b/mobile/android/fenix/app/nimbus.fml.yaml
--- a/mobile/android/fenix/app/nimbus.fml.yaml
+++ b/mobile/android/fenix/app/nimbus.fml.yaml
@@ -532,7 +532,7 @@
report-site-issue:
description: If true, report site issue menu item and preview is available.
type: Boolean
- default: true
+ default: false
defaults:
- channel: release
value:
diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/FeatureFlags.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/FeatureFlags.kt
--- a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/FeatureFlags.kt
+++ b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/FeatureFlags.kt
@@ -91,7 +91,7 @@
/**
* Enables native WebCompat Reporter.
*/
- const val webCompatReporter = true
+ const val webCompatReporter = false
/**
* Enables the tab swipe to dismiss rewrite.