From 39b5cb54fcbb32043449862308331635ad118dff Mon Sep 17 00:00:00 2001 From: leo Date: Fri, 9 Jul 2021 12:02:40 +0800 Subject: [PATCH] fix: change url for checking update --- src/App.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.xaml.cs b/src/App.xaml.cs index d7323cc3..07b4a038 100644 --- a/src/App.xaml.cs +++ b/src/App.xaml.cs @@ -110,7 +110,7 @@ namespace SourceGit { Task.Run(() => { try { var web = new WebClient() { Encoding = Encoding.UTF8 }; - var raw = web.DownloadString("https://gitee.com/api/v5/repos/sourcegit/SourceGit/releases/latest"); + var raw = web.DownloadString("https://gitee.com/api/v5/repos/sourcegit/sourcegit/releases/latest"); var ver = Models.Version.Load(raw); var cur = Assembly.GetExecutingAssembly().GetName().Version;