summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 95ba610e2..2ba2f637d 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -1870,7 +1870,7 @@ function cache_expire() {
} else {
if (has_local_storage()) {
while (localStorage.length > 25) {
- localStorage.removeItem(localStorage.key(localStorage.length-1));
+ localStorage.removeItem(localStorage.key(0));
}
} else {
while (article_cache.length > 25) {