summaryrefslogtreecommitdiffstats
path: root/application/palemoon/components
diff options
context:
space:
mode:
authorJustOff <Off.Just.Off@gmail.com>2018-06-13 23:45:44 +0300
committerJustOff <Off.Just.Off@gmail.com>2018-06-13 23:45:44 +0300
commit3feeaf2098ef1297f4c2fe99a01a736d7d0b10aa (patch)
tree77d71fe3f5a5fec5a0885a0f71ec6b34909c9617 /application/palemoon/components
parent27a19a14646f23194ecfe87530dd8d1d5b25fa57 (diff)
downloadUXP-3feeaf2098ef1297f4c2fe99a01a736d7d0b10aa.tar
UXP-3feeaf2098ef1297f4c2fe99a01a736d7d0b10aa.tar.gz
UXP-3feeaf2098ef1297f4c2fe99a01a736d7d0b10aa.tar.lz
UXP-3feeaf2098ef1297f4c2fe99a01a736d7d0b10aa.tar.xz
UXP-3feeaf2098ef1297f4c2fe99a01a736d7d0b10aa.zip
[PALEMOON] Remove `image/jxr` from `image.http.accept` until JPEG-XR decoder is implemented
Diffstat (limited to 'application/palemoon/components')
-rw-r--r--application/palemoon/components/nsBrowserGlue.js18
1 files changed, 17 insertions, 1 deletions
diff --git a/application/palemoon/components/nsBrowserGlue.js b/application/palemoon/components/nsBrowserGlue.js
index 5910ae9c0..720d1165c 100644
--- a/application/palemoon/components/nsBrowserGlue.js
+++ b/application/palemoon/components/nsBrowserGlue.js
@@ -1207,7 +1207,7 @@ BrowserGlue.prototype = {
},
_migrateUI: function BG__migrateUI() {
- const UI_VERSION = 18;
+ const UI_VERSION = 19;
const BROWSER_DOCURL = "chrome://browser/content/browser.xul#";
let currentUIVersion = 0;
try {
@@ -1426,6 +1426,22 @@ BrowserGlue.prototype = {
catch (ex) {}
}
+#ifndef MOZ_JXR
+ // Until JPEG-XR decoder is implemented (UXP #144)
+ if (currentUIVersion < 19) {
+ try {
+ let ihaPref = "image.http.accept";
+ let ihaValue = Services.prefs.getCharPref(ihaPref);
+ if (ihaValue.includes("image/jxr,")) {
+ Services.prefs.setCharPref(ihaPref, ihaValue.replace("image/jxr,", ""));
+ } else if (ihaValue.includes("image/jxr")) {
+ Services.prefs.clearUserPref(ihaPref);
+ }
+ }
+ catch (ex) {}
+ }
+#endif
+
// Update the migration version.
Services.prefs.setIntPref("browser.migration.version", UI_VERSION);
},