diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2007-08-20 13:49:38 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2007-08-20 13:49:38 +0100 |
| commit | 2fe69e22925eaab69748f1ef94106f2463494a57 (patch) | |
| tree | d5abd77a2f71e82b9c7d04b97364b8799c168457 | |
| parent | b685ba25b732b41e1a493bb55ce3141d56572452 (diff) | |
block feedlist updates when counters don't return number of subscribed-feeds
| -rw-r--r-- | functions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.js b/functions.js index 23cdecf75..041311dfa 100644 --- a/functions.js +++ b/functions.js @@ -738,7 +738,7 @@ function parse_counters(reply, scheduled_call) { if (feeds_stored != feeds_found) { number_of_feeds = feeds_found; - if (feeds_stored != 0) { + if (feeds_stored != 0 && feeds_found != 0) { debug("Subscribed feed number changed, refreshing feedlist"); setTimeout('updateFeedList(false, false)', 50); } |