rpc, catchupfeed: return counters immediately so that frontend can figure out next unread feed correctly

master
Andrew Dolgov 5 years ago
parent f44c6d01b0
commit 0517b88cce

@ -424,7 +424,10 @@ class RPC extends Handler_Protected {
Feeds::catchup_feed($feed_id, $is_cat, false, $mode, [$search_query, $search_lang]);
print json_encode(array("message" => "UPDATE_COUNTERS"));
// return counters here synchronously so that frontend can figure out next unread feed properly
print json_encode(['counters' => Counters::getAllCounters()]);
//print json_encode(array("message" => "UPDATE_COUNTERS"));
}
function setpanelmode() {
@ -620,4 +623,4 @@ class RPC extends Handler_Protected {
print json_encode($rv);
}
}
}

Loading…
Cancel
Save