fix(module,app): handle host without port in cookie domain identification
Some checks reported errors
arcad/emissary/pipeline/head Something is wrong with the build of this commit
Some checks reported errors
arcad/emissary/pipeline/head Something is wrong with the build of this commit
This commit is contained in:
parent
d2f865ccbb
commit
253c93dbac
@ -178,7 +178,7 @@ func NewServer(bundle bundle.Bundle, config *spec.Config, handlerOptions ...edge
|
|||||||
func getCookieDomain(r *http.Request) (string, error) {
|
func getCookieDomain(r *http.Request) (string, error) {
|
||||||
host, _, err := net.SplitHostPort(r.Host)
|
host, _, err := net.SplitHostPort(r.Host)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", errors.WithStack(err)
|
host = r.Host
|
||||||
}
|
}
|
||||||
|
|
||||||
// If host is an IP address
|
// If host is an IP address
|
||||||
|
Loading…
x
Reference in New Issue
Block a user