From 1c49a8cd29872ef5b8c2b9df222d054c9c3e7c85 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 4 Jan 2024 01:13:46 +0100 Subject: Partially revert "Close join page event source once game has started." --- public/join.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'public/join.js') diff --git a/public/join.js b/public/join.js index 27bfba0..78d9137 100644 --- a/public/join.js +++ b/public/join.js @@ -102,7 +102,7 @@ function start_event_source() { evtsrc.addEventListener("game", function (evt) { console.log("GAME:", evt.data) game = JSON.parse(evt.data) - if (game.status !== 0) { + if (game.status > 1) { console.log("CLOSED EVENT SOURCE") clearInterval(timer) evtsrc.close() @@ -350,7 +350,7 @@ function update_login() { window.onload = function () { update() - if (user_id && game.status === 0 && !game.is_match) { + if (user_id && game.status <= 1 && !game.is_match) { start_event_source() timer = setInterval(start_event_source, 15000) } -- cgit v1.2.3