Skip to content

Commit

Permalink
style: cookie doman => cookie domain (#4919)
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Previte <jjprevite@gmail.com>
  • Loading branch information
edvincent and jsjoeio committed Mar 1, 2022
1 parent 44d74c1 commit b3cf4c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export const getCookieDomain = (host: string, proxyDomains: string[]): string |
// default NGINX does this).
!host.includes(".")
) {
logger.debug("no valid cookie doman", field("host", host))
logger.debug("no valid cookie domain", field("host", host))
return undefined
}

Expand All @@ -206,7 +206,7 @@ export const getCookieDomain = (host: string, proxyDomains: string[]): string |
}
})

logger.debug("got cookie doman", field("host", host))
logger.debug("got cookie domain", field("host", host))
return host || undefined
}

Expand Down

0 comments on commit b3cf4c3

Please sign in to comment.