We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d74c1 commit b3cf4c3Copy full SHA for b3cf4c3
src/node/http.ts
@@ -196,7 +196,7 @@ export const getCookieDomain = (host: string, proxyDomains: string[]): string |
196
// default NGINX does this).
197
!host.includes(".")
198
) {
199
- logger.debug("no valid cookie doman", field("host", host))
+ logger.debug("no valid cookie domain", field("host", host))
200
return undefined
201
}
202
@@ -206,7 +206,7 @@ export const getCookieDomain = (host: string, proxyDomains: string[]): string |
206
207
})
208
209
- logger.debug("got cookie doman", field("host", host))
+ logger.debug("got cookie domain", field("host", host))
210
return host || undefined
211
212
0 commit comments