From 2ba98f047ba9129e3e576a1265574073f377e977 Mon Sep 17 00:00:00 2001 From: Evan Date: Thu, 6 Mar 2025 16:09:44 -0800 Subject: [PATCH] fix archive game url --- src/client/LocalServer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/LocalServer.ts b/src/client/LocalServer.ts index 370674363..ef3ac8c3c 100644 --- a/src/client/LocalServer.ts +++ b/src/client/LocalServer.ts @@ -128,6 +128,6 @@ export class LocalServer { type: "application/json", }); const workerPath = this.serverConfig.workerPath(this.lobbyConfig.gameID); - navigator.sendBeacon(`/${workerPath}/archive_singleplayer_game`, blob); + navigator.sendBeacon(`/${workerPath}/api/archive_singleplayer_game`, blob); } }