diff --git a/classes/rpc.php b/classes/rpc.php
index 2cc2e3879ec9b5b0477f90483725ac55473d3eb3..8945823c60265ddb1bf4f8c651e81f7a9dbb63cd 100755
--- a/classes/rpc.php
+++ b/classes/rpc.php
@@ -99,9 +99,6 @@ class RPC extends Handler_Protected {
 			'seq' => $seq
 		];
 
-		if ($seq % 2)
-			$reply['runtime-info'] = $this->make_runtime_info();
-
 		print json_encode($reply);
 	}
 
diff --git a/js/App.js b/js/App.js
index 3c940d8a6fafff954666b569dd1fc1eb09dc2a66..67d932369be80fbbcfa387fed2b31cef99515c26 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...');