]> git.wh0rd.org - tt-rss.git/commitdiff
cache/preload tweaks
authorAndrew Dolgov <fox@bah.spb.su>
Sun, 18 May 2008 08:52:42 +0000 (09:52 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sun, 18 May 2008 08:52:42 +0000 (09:52 +0100)
viewfeed.js

index b2a79b0399204bbe63911ee231686c810117a373..c896036c756fc9a79761c1178cc06d858ccb2fe4 100644 (file)
@@ -1555,7 +1555,7 @@ function cache_check_param(id, param) {
 }
 
 function cache_expire() {
-       while (article_cache.length > 20) {
+       while (article_cache.length > 25) {
                article_cache.shift();
        }
 }
@@ -1611,7 +1611,7 @@ function preload_article_callback(transport) {
 
                        for (var i = 0; i < articles.length; i++) {
                                var id = articles[i].getAttribute("id");
-                               if (!cache_find(id)) {
+                               if (!cache_check(id)) {
                                        cache_inject(id, articles[i].firstChild.nodeValue);                             
                                        debug("preloaded article: " + id);
                                }
@@ -1624,7 +1624,7 @@ function preload_article_callback(transport) {
 
 function preloadArticleUnderPointer(id) {
        try {
-               if (post_under_pointer == id && !cache_find(id)) {
+               if (post_under_pointer == id && !cache_check(id)) {
 
                        debug("trying to preload article " + id);