add fix for predict

This commit is contained in:
larssand
2026-03-14 19:46:18 +01:00
parent 2d95d005cd
commit 3119d98bb6
2 changed files with 30 additions and 3 deletions

View File

@@ -1551,7 +1551,7 @@ function startOverlaySync() {
if (currentView === "overlay") {
renderView();
}
}, 2000);
}, 800);
}
function startOverlayRotation() {
@@ -6123,7 +6123,7 @@ async function persistPassingToBackend(sessionId, passing) {
const res = await fetch(`${getBackendUrl()}/api/passings`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ sessionId, passing }),
body: JSON.stringify({ sessionId, passing, sessionResult: state.resultsBySession[sessionId] || null }),
});
if (!res.ok) {
throw new Error(`HTTP ${res.status}`);