Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Flier committed Jul 26, 2018
1 parent cca50be commit 7764a14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ConvertZZ/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public App()
Task.Run(() =>
{
var versionReport = UpdateChecker.ChecktVersion();
if (versionReport != null && !versionReport.HaveNew)
if (versionReport != null && versionReport.HaveNew)
{
if (MessageBox.Show(String.Format("發現新版本{0}(目前版本:{1})\r\n前往官網下載更新?", versionReport.Newst.ToString(), versionReport.Current.ToString()), "發現更新", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
{
Expand Down

0 comments on commit 7764a14

Please sign in to comment.