fixed javascript typo error

This commit is contained in:
Luca Haid
2026-02-02 19:38:49 +01:00
parent b705510a3a
commit 9b6f73049e

View File

@@ -1114,7 +1114,7 @@ if (typeof (EventSource) !== 'undefined') {
let jsondata;
source.addEventListener('error', function (e) {
let txt;
switch (Event.target.readyState) {
switch (e.target.readyState) {
// if reconnecting
case EventSource.CONNECTING:
txt = 'Reconnecting...';