blob: a79d0e486d782247591c358f1d93a5958867ef54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- a/services/settings/Utils.jsm.orig 2021-08-17 16:32:27.475448626 -0400
+++ b/services/settings/Utils.jsm 2021-08-17 16:32:40.859457980 -0400
@@ -60,12 +60,7 @@
);
const isXpcshell = env.exists("XPCSHELL_TEST_PROFILE_DIR");
const isNotThunderbird = AppConstants.MOZ_APP_NAME != "thunderbird";
- return AppConstants.RELEASE_OR_BETA &&
- !Cu.isInAutomation &&
- !isXpcshell &&
- isNotThunderbird
- ? "https://firefox.settings.services.mozilla.com/v1"
- : gServerURL;
+ return gServerURL;
},
CHANGES_PATH: "/buckets/monitor/collections/changes/changeset",
|