Merge pull request #4290 from IgorA100/patch-641026

Fix: Show more information in console when outputting "Image stream has loaded!..." message (MonitorStream.js)
This commit is contained in:
Isaac Connor
2025-04-03 14:16:00 -04:00
committed by GitHub

View File

@@ -71,7 +71,7 @@ function MonitorStream(monitorData) {
};
this.img_onload = function() {
if (!this.streamCmdTimer) {
console.log('Image stream has loaded! starting streamCmd for '+this.connKey+' in '+statusRefreshTimeout + 'ms');
console.log('Image stream has loaded! starting streamCmd for monitor ID='+this.id+' connKey='+this.connKey+' in '+statusRefreshTimeout + 'ms');
this.streamCmdQuery.bind(this);
this.streamCmdTimer = setInterval(this.streamCmdQuery.bind(this), statusRefreshTimeout);
}