From 7ee2e71bc73fb111e9f82322cc01ec566f58f42e Mon Sep 17 00:00:00 2001 From: ddidderr Date: Sat, 29 Aug 2026 18:46:10 +0200 Subject: [PATCH] fix: relative api/highscores path --- tdkpin-rs/web/storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdkpin-rs/web/storage.js b/tdkpin-rs/web/storage.js index f832098..9970a64 100644 --- a/tdkpin-rs/web/storage.js +++ b/tdkpin-rs/web/storage.js @@ -4,7 +4,7 @@ const storageKey = "tdkpin.save.v1"; const encoder = new TextEncoder(); const decoder = new TextDecoder(); - const highScoreApi = "/api/highscores"; + const highScoreApi = "api/highscores"; let lastRevision = 0; let lastHighScoreRevision = 0; let highScoreRequestInFlight = false;