fix array parameter parsing for subsonic client
Some checks failed
Test / release (ubuntu-latest) (push) Failing after 1m8s
Test / release (macos-latest) (push) Has been cancelled
Test / release (windows-latest) (push) Has been cancelled

This commit is contained in:
jeffvli 2024-12-31 05:56:34 -08:00
parent f0978365d4
commit e57232f89c

View File

@ -255,7 +255,7 @@ axiosClient.interceptors.response.use(
const parsePath = (fullPath: string) => {
const [path, params] = fullPath.split('?');
const parsedParams = qs.parse(params);
const parsedParams = qs.parse(params, { arrayLimit: 99999, parameterLimit: 99999 });
const notNilParams = omitBy(parsedParams, (value) => value === 'undefined' || value === 'null');
return {