FusionAuth / fusionauth-typescript-client

A TypeScript client for FusionAuth
https://fusionauth.io
Apache License 2.0
60 stars 27 forks source link

fix the typescript client not properly handling get query params with an array value #94

Closed lyleschemmerling closed 5 months ago

lyleschemmerling commented 6 months ago

if you tried to a GET with an array in one of the query params the URL for the query would not get properly constructed.

ex: ?ids=123,456

where it should be : ?ids=123&ids=456

This fixes that