Skip to content

Commit

Permalink
Update AppUpdateChecker.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
ddasutein committed Apr 5, 2020
1 parent 517ba5a commit e9809ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DiscordRPC.Main/AppUpdateChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static void CheckVersion()
Version latest_version = new Version(GetLatestRelease());
Version current_version = new Version(GetCurrentApplicationVersion());

if (current_version > latest_version)
if (current_version < latest_version)
{
IsUpdateAvailable = true;
MessageBoxResult result = MessageBox.Show(
Expand Down

0 comments on commit e9809ec

Please sign in to comment.