Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
Fixed a missing cast for Utility.EncodeEncryptedAppTicket
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Wood committed Sep 10, 2019
1 parent 4739810 commit 8477d12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UserAccountManagement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static void AuthenticateWithSteamEncryptedAppTicket(byte[] authTicketData
Action<UserProfile> onSuccess,
Action<WebRequestError> onError)
{
string encodedTicket = Utility.EncodeEncryptedAppTicket(authTicketData, authTicketData.Length);
string encodedTicket = Utility.EncodeEncryptedAppTicket(authTicketData, (uint)authTicketData.Length);
UserAccountManagement.AuthenticateWithSteamEncryptedAppTicket(encodedTicket,
onSuccess, onError);
}
Expand Down

0 comments on commit 8477d12

Please sign in to comment.