From 476379a77e02f11f5261b1ec42cad67b1624a393 Mon Sep 17 00:00:00 2001 From: Asher Date: Tue, 3 Nov 2020 16:44:08 -0600 Subject: [PATCH] Fix cookie domain Had double Domain= --- src/node/http.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/http.ts b/src/node/http.ts index 27164c0f..071ccd97 100644 --- a/src/node/http.ts +++ b/src/node/http.ts @@ -130,7 +130,7 @@ export const getCookieDomain = (host: string, proxyDomains: string[]): string | }) logger.debug("got cookie doman", field("host", host)) - return host ? `Domain=${host}` : undefined + return host || undefined } declare module "express" {