Fix for proxying LBRY HLS.

This commit is contained in:
Kavin 2022-11-02 21:47:20 +00:00
parent dafafaf418
commit fa345b493b
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD
1 changed files with 2 additions and 4 deletions

View File

@ -188,10 +188,8 @@ async fn index(req: HttpRequest) -> Result<HttpResponse, Box<dyn Error>> {
if url.starts_with("https://") {
return line.replace(url, localize_url(url, host).as_str());
}
} else if line.starts_with("https://") {
return localize_url(line, host);
}
line.to_string()
localize_url(line, host)
}).collect::<Vec<String>>().join("\n");
return Ok(response.body(modified));
@ -212,7 +210,7 @@ fn localize_url(url: &str, host: &str) -> String {
.append_pair("host", &host);
return format!("{}?{}", url.path(), url.query().unwrap());
} else if url.starts_with('/') {
} else if url.ends_with(".m3u8") || url.ends_with(".ts") {
return if url.contains('?') {
format!("{}&host={}", url, host)
} else {