diff --git a/Wox/App.xaml.cs b/Wox/App.xaml.cs index 3bd70a046e..e5a7b6ab17 100644 --- a/Wox/App.xaml.cs +++ b/Wox/App.xaml.cs @@ -57,7 +57,7 @@ namespace Wox { try { - using (Updater = await UpdateManager.GitHubUpdateManager(Infrastructure.Wox.Github, prerelease: true)) + using (Updater = await UpdateManager.GitHubUpdateManager(Infrastructure.Wox.Github)) { await Updater.UpdateApp(); } diff --git a/Wox/SettingWindow.xaml.cs b/Wox/SettingWindow.xaml.cs index d605ff928a..752d9008b8 100644 --- a/Wox/SettingWindow.xaml.cs +++ b/Wox/SettingWindow.xaml.cs @@ -872,7 +872,7 @@ namespace Wox { try { - using (var updater = await UpdateManager.GitHubUpdateManager(Infrastructure.Wox.Github, prerelease: true)) + using (var updater = await UpdateManager.GitHubUpdateManager(Infrastructure.Wox.Github)) { // todo 5/9 the return value of UpdateApp() is NULL, fucking useless! await updater.UpdateApp();