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" {