From 4d218cd1e07c246756fd3dfeb9570838118bbc30 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Sat, 11 Nov 2023 18:07:07 +0800 Subject: [PATCH] :art: Update download mirror for ghproxy.com https://github.com/siyuan-note/siyuan/issues/9628 --- kernel/model/updater.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/model/updater.go b/kernel/model/updater.go index dcdeffd58..ccf06f987 100644 --- a/kernel/model/updater.go +++ b/kernel/model/updater.go @@ -136,7 +136,7 @@ func getUpdatePkg() (downloadPkgURLs []string, checksum string, err error) { b3logURL := "https://release.b3log.org/siyuan/" + pkg downloadPkgURLs = append(downloadPkgURLs, b3logURL) githubURL := "https://github.com/siyuan-note/siyuan/releases/download/v" + ver + "/" + pkg - ghproxyURL := "https://ghproxy.com/" + githubURL + ghproxyURL := "https://mirror.ghproxy.com/" + githubURL downloadPkgURLs = append(downloadPkgURLs, ghproxyURL) downloadPkgURLs = append(downloadPkgURLs, githubURL)