summaryrefslogtreecommitdiff
path: root/js/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/App.js')
-rw-r--r--js/App.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/js/App.js b/js/App.js
index 3c940d8a6..67d932369 100644
--- a/js/App.js
+++ b/js/App.js
@@ -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...');