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
matchMinimumDateInEpoch: const matchMinimumDateInEpoch: number = env.MATCH_MINIMUM_DATE.getTime(); // results in the number 1704931200000
As far as I can tell the LolApi Client is sending the start param as a string (wrapping it in quotation marks) therefor riots java api fails because it expected a number and not a string.
The text was updated successfully, but these errors were encountered:
Do you mean to use the startTime param, not start? In case you are, that param takes inputs in seconds not ms, so you'll have to env.MATCH_MINIMUM_DATE.getTime() / 1000.
After I called :
i got this response:
matchMinimumDateInEpoch:
const matchMinimumDateInEpoch: number = env.MATCH_MINIMUM_DATE.getTime(); // results in the number 1704931200000
As far as I can tell the LolApi Client is sending the start param as a string (wrapping it in quotation marks) therefor riots java api fails because it expected a number and not a string.
The text was updated successfully, but these errors were encountered: