diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-04-24 16:52:13 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-04-24 16:52:13 +0200 |
commit | 1697d6456f612cf965e0fe810a1f13e3691aae5c (patch) | |
tree | ee351efc78c7e57df9ea9cbc6ad09b8846d92035 | |
parent | 6662cdbeb39d9bad15efedd37cf97f5e7adff853 (diff) | |
download | UXP-1697d6456f612cf965e0fe810a1f13e3691aae5c.tar UXP-1697d6456f612cf965e0fe810a1f13e3691aae5c.tar.gz UXP-1697d6456f612cf965e0fe810a1f13e3691aae5c.tar.lz UXP-1697d6456f612cf965e0fe810a1f13e3691aae5c.tar.xz UXP-1697d6456f612cf965e0fe810a1f13e3691aae5c.zip |
Re-introduce some required overrides (why were ALL of them cleared?!)
-rw-r--r-- | browser/branding/shared/uaoverrides.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/browser/branding/shared/uaoverrides.inc b/browser/branding/shared/uaoverrides.inc index 13a89ed7f..59e413728 100644 --- a/browser/branding/shared/uaoverrides.inc +++ b/browser/branding/shared/uaoverrides.inc @@ -5,7 +5,7 @@ #define GRE_DATE_SLICE Goanna/20170101
#define APP_SLICE Basilisk/@MOZ_APP_VERSION@
-#define GK_VERSION 52.0
+#define GK_VERSION 52.9
#define GK_SLICE Gecko/20100101
#define FX_SLICE Firefox/@GK_VERSION@
@@ -27,6 +27,8 @@ pref("@GUAO_PREF@.accounts.firefox.com", "Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION // The never-ending Facebook debacle...
// UA-Sniffing domains below are pending responses from their operators - temp workaround
+// Daily motion only likes strict Firefox UAs
+pref("@GUAO_PREF@.dailymotion.com","Mozilla/5.0 (@OS_SLICE@ rv:52.0) @GK_SLICE@ Firefox/52.0");
// The following requires native mode. Or it blocks.. "too old firefox", breakage, etc.
@@ -35,4 +37,5 @@ pref("@GUAO_PREF@.accounts.firefox.com", "Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION // UA-sniffing domains that are "app/vendor-specific" and do not like Pale Moon
// The following domains do not like the Goanna slice
-
+pref("@GUAO_PREF@.hitbox.tv","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@");
+pref("@GUAO_PREF@.yuku.com","Mozilla/5.0 (@OS_SLICE@ rv:@GK_VERSION@) @GK_SLICE@ @FX_SLICE@ @APP_SLICE@");
|