mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 16:34:35 +01:00
Fix cookie domain
Had double Domain=
This commit is contained in:
parent
210fc049c4
commit
476379a77e
1 changed files with 1 additions and 1 deletions
|
|
@ -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" {
|
||||
|
|
|
|||
Loading…
Reference in a new issue