mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-19 23:21:28 +00:00
catchupFeedInGroup: send catchup request even if there are no unread articles in the buffer for this feed
This commit is contained in:
@@ -450,11 +450,12 @@ function catchupFeedInGroup(id) {
|
|||||||
|
|
||||||
if (rows.length > 0) {
|
if (rows.length > 0) {
|
||||||
|
|
||||||
rows.each(function(row) {
|
rows.each(function (row) {
|
||||||
row.removeClassName("Unread");
|
row.removeClassName("Unread");
|
||||||
});
|
});
|
||||||
|
|
||||||
updateFloatingTitle(true);
|
updateFloatingTitle(true);
|
||||||
|
}
|
||||||
|
|
||||||
var catchup_query = "?op=rpc&method=catchupFeed&feed_id=" +
|
var catchup_query = "?op=rpc&method=catchupFeed&feed_id=" +
|
||||||
id + "&is_cat=false";
|
id + "&is_cat=false";
|
||||||
@@ -469,7 +470,6 @@ function catchupFeedInGroup(id) {
|
|||||||
handle_rpc_json(transport);
|
handle_rpc_json(transport);
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
}
|
|
||||||
|
|
||||||
//return viewCurrentFeed('MarkAllReadGR:' + id);
|
//return viewCurrentFeed('MarkAllReadGR:' + id);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user