Skip to content

Commit 52c4b4e

Browse files
committed
Fixed PrimitiveHasher cash regarding uint
1 parent 0b1146e commit 52c4b4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MLAPI/NetworkingManagerComponents/Binary/PrimitiveHasher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static ulong GetULongHash(string input, bool cache = false)
2828
public static ulong GetUIntHash(string input, bool cache = false)
2929
{
3030
if (cache && uintCachedHashes.ContainsKey(input))
31-
return ulongCachedHashes[input];
31+
return uintCachedHashes[input];
3232

3333
using (SHA256Managed sha = new SHA256Managed())
3434
{

0 commit comments

Comments
 (0)