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)