diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-04-23 11:44:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-23 11:44:12 +0200 |
commit | 531abf25517fd6b130bc5a1f799becf33684bb43 (patch) | |
tree | 76d45af609ba25efce252d6ec276c0da7b223046 /toolkit/components/aboutcache/content | |
parent | 1916969baaa5d2bd84f323ca0510ba2c8a04ef58 (diff) | |
parent | b9ecf99332786f0040e63d868fa0d799ed1ab765 (diff) | |
download | UXP-531abf25517fd6b130bc5a1f799becf33684bb43.tar UXP-531abf25517fd6b130bc5a1f799becf33684bb43.tar.gz UXP-531abf25517fd6b130bc5a1f799becf33684bb43.tar.lz UXP-531abf25517fd6b130bc5a1f799becf33684bb43.tar.xz UXP-531abf25517fd6b130bc5a1f799becf33684bb43.zip |
Merge pull request #234 from janekptacijarabaci/about_errors_1
moebius#65: Fix: various "about:..." system pages errors
Diffstat (limited to 'toolkit/components/aboutcache/content')
-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 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; } |