1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:35:56 +00:00

decouple runtime-info object from counters

This commit is contained in:
Andrew Dolgov
2021-02-24 15:40:19 +03:00
parent 553548b689
commit 7f41228a71
2 changed files with 7 additions and 11 deletions

View File

@@ -714,11 +714,6 @@ const App = {
App.updateRuntimeInfo();
});
if (!this.getInitParam("bw_limit"))
window.setInterval(() => {
App.updateRuntimeInfo();
}, 60 * 1000)
} else {
Feeds.reload();
@@ -772,12 +767,16 @@ const App = {
}, 3600 * 1000);
}
console.log("second stage ok");
PluginHost.run(PluginHost.HOOK_INIT_COMPLETE, null);
}
if (!this.getInitParam("bw_limit"))
window.setInterval(() => {
App.updateRuntimeInfo();
}, 60 * 1000)
console.log("second stage ok");
},
checkForUpdates: function() {
console.log('checking for updates...');