diff --git a/main.go b/main.go index 56d2f5e..070d4a3 100644 --- a/main.go +++ b/main.go @@ -31,6 +31,10 @@ func genericHTTPProxy(w http.ResponseWriter, req *http.Request) { host := q.Get("host") q.Del("host") + if len(host) <= 0 { + host = q.Get("hls_chunk_host") + } + if len(host) <= 0 { host = getHost(req.URL.Path) }