From: Andrew Dolgov Date: Thu, 4 Aug 2011 12:53:32 +0000 (+0400) Subject: do not perform catchup batch request when infscroll request is in progress X-Git-Tag: 1.5.6~60 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=21c92cdc9b2d2a30a216155990cae2a665403303;p=tt-rss.git do not perform catchup batch request when infscroll request is in progress --- diff --git a/viewfeed.js b/viewfeed.js index 3522284d..3a21323d 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -1389,7 +1389,7 @@ function headlines_scroll_handler(e) { function catchupBatchedArticles() { try { - if (catchup_id_batch.length > 0) { + if (catchup_id_batch.length > 0 && !_infscroll_request_sent) { var query = "?op=rpc&subop=catchupSelected" + "&cmode=0&ids=" + param_escape(catchup_id_batch.toString());