Patch for invidious live streams.

This commit is contained in:
FireMasterK 2020-12-10 19:07:10 +05:30
parent b7fdac0c1b
commit 675ada1905
No known key found for this signature in database
GPG Key ID: 8DFF5DD33E93DB58
1 changed files with 4 additions and 0 deletions

View File

@ -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)
}