Skip to content

Commit

Permalink
fix duplicate check
Browse files Browse the repository at this point in the history
  • Loading branch information
poma committed Nov 1, 2017
1 parent 1086cf7 commit 217a51b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion Hotsapi.Uploader.Common/Analyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ public string GetFingerprint(Replay replay)
replay.Players.Select(p => p.BattleNetId).OrderBy(x => x).Map(x => str.Append(x.ToString()));
str.Append(replay.RandomValue);
var md5 = MD5.Create().ComputeHash(Encoding.UTF8.GetBytes(str.ToString()));
SwapBytes(md5, 6, 7);
var result = new Guid(md5);
return result.ToString();
}
Expand Down
4 changes: 2 additions & 2 deletions Hotsapi.Uploader.Windows/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.0.0")]
[assembly: AssemblyFileVersion("1.6.0.0")]
[assembly: AssemblyVersion("1.7.0.0")]
[assembly: AssemblyFileVersion("1.7.0.0")]

0 comments on commit 217a51b

Please sign in to comment.