Skip to content

Commit 4915464

Browse files
committed
Fix download route with devBuild query param
1 parent d67cd39 commit 4915464

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/download/+page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
if (timer == 0) {
1414
if ($page.url.searchParams.has("devBuild"))
15-
goto("/api/download?devBuild=latest");
15+
goto("/api/download?devBuild=" + $page.url.searchParams.get("devBuild"));
1616
else
1717
goto("/api/download");
1818

0 commit comments

Comments
 (0)