summaryrefslogtreecommitdiffstats
path: root/toolkit/components
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-23 09:02:57 +0200
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-23 09:02:57 +0200
commitb9ecf99332786f0040e63d868fa0d799ed1ab765 (patch)
tree4226709e8c9dc01228c7950c5af6b9ed86e93494 /toolkit/components
parentc30ebdac27c93b57e368c69e9c13055a17229992 (diff)
downloadUXP-b9ecf99332786f0040e63d868fa0d799ed1ab765.tar
UXP-b9ecf99332786f0040e63d868fa0d799ed1ab765.tar.gz
UXP-b9ecf99332786f0040e63d868fa0d799ed1ab765.tar.lz
UXP-b9ecf99332786f0040e63d868fa0d799ed1ab765.tar.xz
UXP-b9ecf99332786f0040e63d868fa0d799ed1ab765.zip
moebius#65: Fix: "about:..." - throws an errors
https://github.com/MoonchildProductions/moebius/pull/65
Diffstat (limited to 'toolkit/components')
-rw-r--r--toolkit/components/aboutcache/content/aboutCache.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/toolkit/components/aboutcache/content/aboutCache.js b/toolkit/components/aboutcache/content/aboutCache.js
index 07067cce3..e945d683e 100644
--- a/toolkit/components/aboutcache/content/aboutCache.js
+++ b/toolkit/components/aboutcache/content/aboutCache.js
@@ -40,5 +40,9 @@ function navigate()
if ($('priv').checked)
context += 'p,';
+ if (storage == null) {
+ storage = "";
+ }
+
window.location.href = 'about:cache?storage=' + storage + '&context=' + context;
}