From ee298c40995fa02520149268c68add1b64111646 Mon Sep 17 00:00:00 2001 From: BluDood Date: Wed, 23 Oct 2024 22:11:30 +0200 Subject: [PATCH] fix: another change in the release download path --- src/main/lib/webapp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/lib/webapp.ts b/src/main/lib/webapp.ts index 380e095..c21fe6f 100644 --- a/src/main/lib/webapp.ts +++ b/src/main/lib/webapp.ts @@ -23,7 +23,7 @@ export async function getWebAppDir() { if (fs.existsSync(extractPath)) fs.rmSync(extractPath, { recursive: true }) - const url = `https://github.com/BluDood/GlanceThing/releases/download/${version}/glancething-client-v${version}.zip` + const url = `https://github.com/BluDood/GlanceThing/releases/download/v${version}/glancething-client-v${version}.zip` const res = await axios.get(url, { responseType: 'stream',