]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Fix slow loading bandwidth monitor graph in status tab
authorFlole998 <Flole998@users.noreply.github.com>
Wed, 21 Jul 2021 14:13:09 +0000 (16:13 +0200)
committerGitHub <noreply@github.com>
Wed, 21 Jul 2021 14:13:09 +0000 (16:13 +0200)
src/webui/static/app/status.js

index d65c8de40eff09f5f097a909230be785c98f791c..b8f18054d47fadb3962cdf31cde5b4f664ee5e62 100644 (file)
@@ -983,13 +983,13 @@ tvheadend.stream_bw_monitor = function(id) {
                 render: {
                     scope: this,
                     fn: function(item) {
-                        chart.streamTo(item.el.dom, 15000);
+                        chart.streamTo(item.el.dom, 1000);
                     }
                 },
                 resize: {
                     scope: this,
                     fn: function(item) {
-                        chart.render(item.el.dom, 15000);
+                        chart.render(item.el.dom, 1000);
                     }
                 }
             }