Skip to content

Commit 476379a

Browse files
committed
Fix cookie domain
Had double Domain=
1 parent 210fc04 commit 476379a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/http.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export const getCookieDomain = (host: string, proxyDomains: string[]): string |
130130
})
131131

132132
logger.debug("got cookie doman", field("host", host))
133-
return host ? `Domain=${host}` : undefined
133+
return host || undefined
134134
}
135135

136136
declare module "express" {

0 commit comments

Comments
 (0)