mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 17:55:55 +00:00
fix bug in refetch_callback
This commit is contained in:
@@ -62,11 +62,15 @@ function feedlist_callback() {
|
|||||||
function refetch_callback() {
|
function refetch_callback() {
|
||||||
|
|
||||||
if (xmlhttp_rpc.readyState == 4) {
|
if (xmlhttp_rpc.readyState == 4) {
|
||||||
notify("All feeds updated.");
|
|
||||||
|
|
||||||
active_feed_id = frames["feeds-frame"].document.getElementById("ACTFEEDID").innerHTML;
|
var actfeedid = frames["feeds-frame"].document.getElementById("ACTFEEDID");
|
||||||
|
|
||||||
|
if (actfeedid) {
|
||||||
|
active_feed_id = actfeedid.innerHTML;
|
||||||
|
}
|
||||||
|
|
||||||
document.title = "Tiny Tiny RSS";
|
document.title = "Tiny Tiny RSS";
|
||||||
|
notify("All feeds updated.");
|
||||||
|
|
||||||
updateFeedList();
|
updateFeedList();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user