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
All leauge items in the List returned from ApiHandler#getLeagueEntries are empty. The only value set in them is tier. All other variables are either 0 or null. Also getRank() and getQueueType() are throwing exceptions because of that.
The text was updated successfully, but these errors were encountered:
Problem seems to be the wrong return time. The api is actually returning a <Map<Long, List<LeagueList>>> while riotapi.rest tries to parse a <Map<Long, List<LeagueEntry>>> at ApiHandler line 236. Replacing LeagueEntry with LeagueList fixes the problem.
All leauge items in the List returned from ApiHandler#getLeagueEntries are empty. The only value set in them is
tier
. All other variables are either0
ornull
. AlsogetRank()
andgetQueueType()
are throwing exceptions because of that.The text was updated successfully, but these errors were encountered: