don't open Fresh feed when CDM auto-catchup is enabled

This commit is contained in:
Andrew Dolgov 2007-11-17 07:49:13 +01:00
parent eb8b5c263e
commit e1dfd280ec
1 changed files with 3 additions and 1 deletions

View File

@ -264,7 +264,9 @@ function feedlist_init() {
debug("some feed is open on feedlist refresh, reloading"); debug("some feed is open on feedlist refresh, reloading");
setTimeout("viewCurrentFeed()", 100); setTimeout("viewCurrentFeed()", 100);
} else { } else {
setTimeout("viewfeed(-3)", 100); if (getInitParam("cdm_auto_catchup") != 1) {
setTimeout("viewfeed(-3)", 100);
}
} }
} catch (e) { } catch (e) {