Skip to content

Commit 0a09514

Browse files
committed
changed != for <
1 parent fdae59d commit 0a09514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RetailCoder.VBE/UI/Command/VersionCheckCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ await _versionCheck
4444
.GetLatestVersionAsync()
4545
.ContinueWith(t =>
4646
{
47-
if (_versionCheck.CurrentVersion != t.Result)
47+
if (_versionCheck.CurrentVersion < t.Result)
4848
{
4949
PromptAndBrowse(t.Result);
5050
}

0 commit comments

Comments
 (0)