summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-20 13:49:38 +0100
committerAndrew Dolgov <[email protected]>2007-08-20 13:49:38 +0100
commit2fe69e22925eaab69748f1ef94106f2463494a57 (patch)
treed5abd77a2f71e82b9c7d04b97364b8799c168457 /functions.js
parentb685ba25b732b41e1a493bb55ce3141d56572452 (diff)
block feedlist updates when counters don't return number of subscribed-feeds
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js2
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);
}