From cd1bb36d5bd2d86c06770598df19317348a05ed0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 20 Nov 2010 01:31:20 +0300 Subject: startup speed improvements --- feedlist.js | 3 +++ functions.php | 2 +- tt-rss.js | 2 -- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/feedlist.js b/feedlist.js index 9fb9c9efb..bd1c85722 100644 --- a/feedlist.js +++ b/feedlist.js @@ -29,6 +29,7 @@ function viewNextFeedPage() { function viewfeed(feed, subop, is_cat, offset) { try { if (is_cat == undefined) is_cat = false; + if (subop == undefined) subop = ''; // if (!offset) page_offset = 0; @@ -208,6 +209,8 @@ function feedlist_init() { hideOrShowFeeds(getInitParam("hide_read_feeds") == 1); + setTimeout("timeout()", 5000); + } catch (e) { exception_error("feedlist/init", e); } diff --git a/functions.php b/functions.php index 1778479ad..fe42ea43b 100644 --- a/functions.php +++ b/functions.php @@ -7033,7 +7033,7 @@ if (!$title) $title = getFeedTitle($link, $feed_id, false); - if (!$unread) + if ($unread === false) $unread = getFeedUnread($link, $feed_id, false); $obj['id'] = 'FEED:' . $feed_id; diff --git a/tt-rss.js b/tt-rss.js index c88a08533..a4082bd8b 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -329,8 +329,6 @@ function init_second_stage() { if (has_local_storage()) localStorage.clear(); - setTimeout("timeout()", 3000); - console.log("second stage ok"); } catch (e) { -- cgit v1.2.3