From 7a9a266560820631fa5097be7f02682c637de1d2 Mon Sep 17 00:00:00 2001 From: James Waters Date: Fri, 11 Aug 2023 21:03:43 +0100 Subject: [PATCH] Ignore error --- src/utils/proxy/cookie-jar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/proxy/cookie-jar.js b/src/utils/proxy/cookie-jar.js index 7443e22a..708fc919 100644 --- a/src/utils/proxy/cookie-jar.js +++ b/src/utils/proxy/cookie-jar.js @@ -52,7 +52,7 @@ export function importCookieHeader(url, cookieHeader) { // Otherwise we add a new cookie cookieJar.setCookieSync(new Cookie({ key, value - }), url.toString(), { ignoreError: false }); + }), url.toString(), { ignoreError: true }); } } }