downloads endpoint route fix

This commit is contained in:
2026-07-28 10:55:30 +02:00
parent 4afa440b12
commit 6ea7a8ae69
3 changed files with 3 additions and 6 deletions
@@ -254,7 +254,7 @@ const allReleases = computed(() => [...stableReleases.value, ...devReleases.valu
const latestStable = computed(() => stableReleases.value[0] ?? null)
const downloadUrl = (path: string) =>
`/download?path=${encodeURIComponent(path.replace('/file/', ''))}`
`/api/download?path=${encodeURIComponent(path.replace('/file/', ''))}`
onMounted(async () => {
try {