diff --git a/src/utils/proxyUrls.ts b/src/utils/proxyUrls.ts index 64c91b34..c967a01c 100644 --- a/src/utils/proxyUrls.ts +++ b/src/utils/proxyUrls.ts @@ -28,7 +28,7 @@ function isParsedUrlType(type: string): type is ParsedUrlType { */ function parseParams(input: string): Record { const entriesParams = input - .split(",") + .split(";") .map((param) => param.split("=", 2).filter((part) => part.length !== 0)) .filter((v) => v.length === 2); return Object.fromEntries(entriesParams);