1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-17 21:31:30 +00:00

remove QUOTA_EXCEEDED_ERR (undefined in chrome)

This commit is contained in:
Andrew Dolgov
2011-09-13 05:39:32 +04:00
parent 9abc671546
commit dea24b86b1

View File

@@ -2054,7 +2054,6 @@ function cache_set(id, obj) {
try { try {
sessionStorage[id] = obj; sessionStorage[id] = obj;
} catch (e) { } catch (e) {
if (e == QUOTA_EXCEEDED_ERR)
sessionStorage.clear(); sessionStorage.clear();
} }
} }