From c2fc1ffa64b29b20b9a64f4fec745848e4b90c34 Mon Sep 17 00:00:00 2001 From: Thayol Date: Sun, 20 Jun 2021 08:12:28 +0200 Subject: [PATCH] Fixed "desynced" bug --- updater.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updater.js b/updater.js index e0997ee..88ec189 100644 --- a/updater.js +++ b/updater.js @@ -246,7 +246,7 @@ function updateUnalikeDisplay(unalikeJson) { if (lobby.desynced) { stateSymbol = "🔀 (Desynced)"; } - else if (lobby.beatmapset > 0 && lobby.beatmapset != unalikeJson.current_mapset) + else if (lobby.beatmapset > 0 && lobby.beatmapset != unalikeJson.currentMapset) { stateSymbol = "🆘 (Desynced)"; }