From: Andrew Dolgov Date: Sat, 17 Nov 2007 06:49:13 +0000 (+0100) Subject: don't open Fresh feed when CDM auto-catchup is enabled X-Git-Tag: 1.2.17~26 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=e1dfd280ecef53f151484b6acfc8967866fb3b47;p=tt-rss.git don't open Fresh feed when CDM auto-catchup is enabled --- diff --git a/feedlist.js b/feedlist.js index 777119a3..dfe40085 100644 --- a/feedlist.js +++ b/feedlist.js @@ -264,7 +264,9 @@ function feedlist_init() { debug("some feed is open on feedlist refresh, reloading"); setTimeout("viewCurrentFeed()", 100); } else { - setTimeout("viewfeed(-3)", 100); + if (getInitParam("cdm_auto_catchup") != 1) { + setTimeout("viewfeed(-3)", 100); + } } } catch (e) {