fix(connectuo): Fixes lower case tokens (#554)

This commit is contained in:
Kamron Batman 2021-03-15 16:59:19 -07:00 committed by GitHub
parent 24ed9b3236
commit 6649344ad2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,7 +54,7 @@ namespace Server.Network
}
_token = GC.AllocateUninitializedArray<byte>(_connectUOTokenLength);
token.GetBytes(_token);
token.ToUpperInvariant().GetBytes(_token);
}
}
catch