We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b1146e commit 52c4b4eCopy full SHA for 52c4b4e
MLAPI/NetworkingManagerComponents/Binary/PrimitiveHasher.cs
@@ -28,7 +28,7 @@ public static ulong GetULongHash(string input, bool cache = false)
28
public static ulong GetUIntHash(string input, bool cache = false)
29
{
30
if (cache && uintCachedHashes.ContainsKey(input))
31
- return ulongCachedHashes[input];
+ return uintCachedHashes[input];
32
33
using (SHA256Managed sha = new SHA256Managed())
34
0 commit comments