From: Flole998 Date: Wed, 21 Jul 2021 14:13:09 +0000 (+0200) Subject: Fix slow loading bandwidth monitor graph in status tab X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=129df4ff3591ce144e7467e93c3f1a3a194bb583;p=thirdparty%2Ftvheadend.git Fix slow loading bandwidth monitor graph in status tab --- diff --git a/src/webui/static/app/status.js b/src/webui/static/app/status.js index d65c8de40..b8f18054d 100644 --- a/src/webui/static/app/status.js +++ b/src/webui/static/app/status.js @@ -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); } } }