Skip to content

Commit

Permalink
Fix Version Checking
Browse files Browse the repository at this point in the history
  • Loading branch information
iamwyza committed Jan 1, 2018
1 parent b0bfd65 commit a549101
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PlayerDataDump/PlayerDataDump.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public override bool IsCurrent()

Version newVersion = new Version(helper.GetVersion());
LogDebug($"Comparing Versions: {newVersion} > {currentVersion}");
return newVersion.CompareTo(currentVersion) < 0;
return newVersion.CompareTo(currentVersion) <= 0;
}
catch (Exception ex)
{
Expand Down
4 changes: 2 additions & 2 deletions PlayerDataDump/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.4.1.0")]
[assembly: AssemblyFileVersion("2.4.1.0")]
[assembly: AssemblyVersion("2.4.1.1")]
[assembly: AssemblyFileVersion("2.4.1.1")]

0 comments on commit a549101

Please sign in to comment.