From ae3e8a86b9c8b0bc8cf1613e019b99e478e04edf Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Sun, 14 Dec 2025 12:43:27 -0500 Subject: [PATCH] Fix initial status update --- web/js/MonitorStream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/MonitorStream.js b/web/js/MonitorStream.js index 290d655be..1f013a45d 100644 --- a/web/js/MonitorStream.js +++ b/web/js/MonitorStream.js @@ -81,7 +81,7 @@ function MonitorStream(monitorData) { this.img_onload = function() { if (!this.streamCmdTimer) { console.log('Image stream has loaded! starting streamCmd for monitor ID='+this.id+' connKey='+this.connKey+' in '+statusRefreshTimeout + 'ms'); - this.streamCmdQuery.bind(this); // This is to get an instant status update + this.streamCmdQuery(); // This is to get an instant status update this.streamCmdTimer = setInterval(this.streamCmdQuery.bind(this), statusRefreshTimeout); } };