mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 18:15:56 +00:00
fix auto-refresh of active feed when update detected in scheduled refetch call
This commit is contained in:
@@ -613,7 +613,7 @@ function parse_counters(reply, scheduled_call) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function parse_counters_reply(xmlhttp) {
|
function parse_counters_reply(xmlhttp, scheduled_call) {
|
||||||
|
|
||||||
if (!xmlhttp.responseXML) {
|
if (!xmlhttp.responseXML) {
|
||||||
notify("refetch_callback: backend did not return valid XML", true, true);
|
notify("refetch_callback: backend did not return valid XML", true, true);
|
||||||
@@ -648,7 +648,7 @@ function parse_counters_reply(xmlhttp) {
|
|||||||
|
|
||||||
var counters = reply.firstChild;
|
var counters = reply.firstChild;
|
||||||
|
|
||||||
parse_counters(counters, true);
|
parse_counters(counters, scheduled_call);
|
||||||
|
|
||||||
var runtime_info = counters.nextSibling;
|
var runtime_info = counters.nextSibling;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user