use no-cache when retrieving commit.txt to avoid stale commit

This commit is contained in:
evanpelle
2025-09-12 10:27:20 -07:00
parent ab6578a6e3
commit 25e8ec0579
+1
View File
@@ -244,6 +244,7 @@ export class JoinPrivateLobbyModal extends LitElement {
const gitCommitPromise = fetch(`/commit.txt`, {
method: "GET",
headers: { "Content-Type": "application/json" },
cache: "no-cache",
});
const [archiveResponse, gitCommitResponse] = await Promise.all([