From b5655a1a5fbd9be77a797cb573652885d64ac700 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?=
 <nanaeonn@outlook.com>
Date: Mon, 18 Mar 2024 19:37:57 +0800
Subject: [PATCH] fix: updater real download url

---
 src/common/utils/update.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/utils/update.ts b/src/common/utils/update.ts
index 1eb02e3..8ab6184 100644
--- a/src/common/utils/update.ts
+++ b/src/common/utils/update.ts
@@ -13,7 +13,7 @@ export async function checkVersion() {
     return { result: true, version: version };
 }
 export async function updateLLOneBot() {
-    let mirrorGithubList = ["https://mirror.ghproxy.com"];
+    let mirrorGithubList = ["https://mirror.ghproxy.com/"];
     const latestVersion = await getRemoteVersion();
     if (latestVersion && latestVersion != "") {
         const downloadUrl = "https://github.com/LLOneBot/LLOneBot/releases/download/v" + latestVersion + "/LLOneBot.zip";