From 9b7ecc0ac790c611965e6a2359a06f95b2bbc38c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 2 Feb 2009 15:24:32 +0300 Subject: update amount of subscribed feeds in runtime-info (to invalidate feedlist cache) --- tt-rss.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index c3c21cc20..da88d3d69 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -510,7 +510,7 @@ function init_second_stage() { daemon_refresh_only = getInitParam("daemon_refresh_only") == 1; feeds_sort_by_unread = getInitParam("feeds_sort_by_unread") == 1; - var fl = cache_find("FEEDLIST"); + var fl = cache_find_param("FEEDLIST", getInitParam("num_feeds")); if (fl) { render_feedlist(fl); @@ -737,6 +737,10 @@ function parse_runtime_info(elem) { debug("RI: " + k + " => " + v); + if (k == "num_feeds") { + init_params[k] = v; + } + if (k == "new_version_available") { var icon = document.getElementById("newVersionIcon"); if (icon) { -- cgit v1.2.3