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
Array-based query strings such as dexes and excludeDexes are serialised using repeating parameters (eg dexes=Openbook&dexes=Saber) instead of as comma separated strings as expected by the server.
Issue
Array-based query strings such as
dexes
andexcludeDexes
are serialised using repeating parameters (egdexes=Openbook&dexes=Saber
) instead of as comma separated strings as expected by the server.Reproduce
Call with for eg:
The following will be used as the query parameter:
Which will result in the dexes not actually being exlcuded in the resulting quote.
Fix
Overriding the client can fix this as a hack:
But this should ideally be fixed in the runtime where the query string generator can prefer concatenating arrays with commas.
The text was updated successfully, but these errors were encountered: