diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-12-06 11:52:41 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-12-06 11:52:41 +0100 |
commit | 93705a7d00b2b09ee9b5d036b71c5be79b8d10a1 (patch) | |
tree | 999025961f51886607d980ac78a7c9dcaf09c575 /application/palemoon/branding | |
parent | b07aad35366437cb2e07d9e75c6baf42b4ae17a4 (diff) | |
download | UXP-93705a7d00b2b09ee9b5d036b71c5be79b8d10a1.tar UXP-93705a7d00b2b09ee9b5d036b71c5be79b8d10a1.tar.gz UXP-93705a7d00b2b09ee9b5d036b71c5be79b8d10a1.tar.lz UXP-93705a7d00b2b09ee9b5d036b71c5be79b8d10a1.tar.xz UXP-93705a7d00b2b09ee9b5d036b71c5be79b8d10a1.zip |
Stop feeding a Firefox compat mode to AMO.
Since AMO has removed all "legacy" extensions, they do not offer anything compatible with us any longer.
We send the native UA to them from now on to always have it respond with "Only with Firefox".
Diffstat (limited to 'application/palemoon/branding')
-rw-r--r-- | application/palemoon/branding/shared/pref/uaoverrides.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/application/palemoon/branding/shared/pref/uaoverrides.inc b/application/palemoon/branding/shared/pref/uaoverrides.inc index e5e727ee5..b33758ea9 100644 --- a/application/palemoon/branding/shared/pref/uaoverrides.inc +++ b/application/palemoon/branding/shared/pref/uaoverrides.inc @@ -21,6 +21,11 @@ #define OS_SLICE Windows NT 6.1; WOW64;
#endif
+// Special-case AMO
+// We send the native UA slice now, since they no longer offer any compatible extensions for us.
+// This will result in an "only with Firefox" message which suits us fine, because it's the truth.
+pref("@GUAO_PREF@.addons.mozilla.org","Mozilla/5.0 (@OS_SLICE@ rv:@GRE_VERSION@) @GRE_DATE_SLICE@ @PM_SLICE@");
+
// Required for domains that have proven unresponsive to requests from users
pref("@GUAO_PREF@.live.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ (Pale Moon)");
pref("@GUAO_PREF@.msn.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ (Pale Moon)");
|