diff options
Diffstat (limited to 'toolkit/components/aboutcache/content/aboutCache.js')
-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; } |