catchupFeedInGroup: send catchup request even if there are no unread articles in the buffer for this feed
This commit is contained in:
parent
701de97ebb
commit
dfaf806a7a
|
@ -450,27 +450,27 @@ 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=" +
|
|
||||||
id + "&is_cat=false";
|
|
||||||
|
|
||||||
console.log(catchup_query);
|
|
||||||
|
|
||||||
notify_progress("Loading, please wait...", true);
|
|
||||||
|
|
||||||
new Ajax.Request("backend.php", {
|
|
||||||
parameters: catchup_query,
|
|
||||||
onComplete: function (transport) {
|
|
||||||
handle_rpc_json(transport);
|
|
||||||
}
|
|
||||||
} );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var catchup_query = "?op=rpc&method=catchupFeed&feed_id=" +
|
||||||
|
id + "&is_cat=false";
|
||||||
|
|
||||||
|
console.log(catchup_query);
|
||||||
|
|
||||||
|
notify_progress("Loading, please wait...", true);
|
||||||
|
|
||||||
|
new Ajax.Request("backend.php", {
|
||||||
|
parameters: catchup_query,
|
||||||
|
onComplete: function (transport) {
|
||||||
|
handle_rpc_json(transport);
|
||||||
|
}
|
||||||
|
} );
|
||||||
|
|
||||||
//return viewCurrentFeed('MarkAllReadGR:' + id);
|
//return viewCurrentFeed('MarkAllReadGR:' + id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue