Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(android): fix invalid encoding of scopes in query parameters
Before this, the `it.value.toString()` caused the list of scopes to be encoded like `scopes[]=[scope1, scope2]` which is invalid. This change fixes the encoding to `scopes[]=scope1&scopes[]=scope2` as expected by the server.
- Loading branch information