fixed severe bug in production that cleared the cache every 0ms

This commit is contained in:
Kerrick Long
2012-04-29 05:06:12 -05:00
parent d1c002777a
commit 0172785c44
+1 -1
View File
@@ -15,7 +15,7 @@
background.clearCache();
chrome.tabs.onUpdated.addListener(background.prepareBrowserAction);
background.watchMail();
window.setInterval(background.clearCache, settings.cacheTime * 60 * 1000);
window.setInterval(background.clearCache, (settings.get('cacheTime') * 60 * 1000));
reddit.getReddits();
}