Update index.html

This commit is contained in:
2025-08-23 23:57:50 -07:00
committed by GitHub
parent 7d09becaf2
commit 5300799b6e

View File

@@ -255,7 +255,7 @@ class SingleRunWS {
}
};
this.ws.onmessage = (e) => {
window.SUNE.log(`WS msg: ${e.data.slice(0,80)}`);
// window.SUNE.log(`WS msg: ${e.data.slice(0,80)}`);
let m; try { m = JSON.parse(e.data); } catch { return; }
if (m.type === "delta" && typeof m.seq === "number" && m.seq > this.lastSeq) {
this.lastSeq = m.seq;