diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-23 09:02:57 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-23 09:02:57 +0200 |
commit | b9ecf99332786f0040e63d868fa0d799ed1ab765 (patch) | |
tree | 4226709e8c9dc01228c7950c5af6b9ed86e93494 /toolkit/components | |
parent | c30ebdac27c93b57e368c69e9c13055a17229992 (diff) | |
download | uxp-b9ecf99332786f0040e63d868fa0d799ed1ab765.tar.gz |
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.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/toolkit/components/aboutcache/content/aboutCache.js b/toolkit/components/aboutcache/content/aboutCache.js index 07067cce36..e945d683e0 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; } |