mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-15 20:44:01 +02:00
livereload: Fix host comparison when ports aren't present
Compare the original hosts from 'Origin' and 'Host' headers before attempting to do a port-less comparison. This helps in the case when hugo server was started with a '--port=80' so both headers do not contain a port. Fixes #4141
This commit is contained in:
committed by
Bjørn Erik Pedersen
parent
9df3736fec
commit
2511498608
@@ -62,6 +62,10 @@ var upgrader = &websocket.Upgrader{
|
||||
return false
|
||||
}
|
||||
|
||||
if u.Host == r.Host {
|
||||
return true
|
||||
}
|
||||
|
||||
h1, _, err := net.SplitHostPort(u.Host)
|
||||
if err != nil {
|
||||
return false
|
||||
|
Reference in New Issue
Block a user