Compare commits

...

1 Commits

Author SHA1 Message Date
e975381b4f fix(controller,app): correctly detect ip address for cookie domain resolution
All checks were successful
arcad/emissary/pipeline/head This commit looks good
2023-04-24 13:49:53 +02:00

View File

@ -143,7 +143,7 @@ func getCookieDomain(r *http.Request) (string, error) {
}
// If host is an IP address
if wildcard.Match(host, "*.*.*.*") {
if ip := net.ParseIP(host); ip != nil {
return "", nil
}