You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In the PlayGamesScore constructor, the parameter 'leaderboardId' is not used and the function is actually using the class variable leaderboardID instead.
Describe the bug
In the PlayGamesScore constructor, the parameter 'leaderboardId' is not used and the function is actually using the class variable leaderboardID instead.
To Reproduce
Steps to reproduce the behavior:
internal PlayGamesScore(DateTime date, string leaderboardId,
ulong rank, string playerId, ulong value, string metadata)
{
this.mDate = date;
mLbId = leaderboardID;
this.mRank = rank;
this.mPlayerId = playerId;
this.mValue = (long) value;
this.mMetadata = metadata;
}
Note the different case causing the erroneous assignment.
Expected behavior
Parameters passed to the function are used correctly
Observed behavior
Leaderboard id is ignored and the value already in the class is used
Bug Report
NA
Screenshots
NA
Versions
Additional context
NA
The text was updated successfully, but these errors were encountered: