title bugfix

This commit is contained in:
Simon
2025-08-15 19:48:54 +00:00
parent 9f4e8eeff0
commit 5dcc046005

View File

@@ -216,9 +216,9 @@ impl HentaihavenProvider {
if season { if season {
video_url = format!("https://master-lengs.org/api/v3/hh/{}-season-eng/master.m3u8", url_part); video_url = format!("https://master-lengs.org/api/v3/hh/{}-season-eng/master.m3u8", url_part);
} }
let title = video_segment.split("title=\"").collect::<Vec<&str>>()[1] let title = format!("{} - {}",video_segment.split("title=\"").collect::<Vec<&str>>()[1]
.split("\"").collect::<Vec<&str>>()[0] .split("\"").collect::<Vec<&str>>()[0]
.to_string(); .to_string(), i);
let id = format!("{}-{}", url_part, i); let id = format!("{}-{}", url_part, i);
let mut thumb = format!("https://himg.nl/images/hh/{}-{}-eng/poster.jpg", url_part, i); let mut thumb = format!("https://himg.nl/images/hh/{}-{}-eng/poster.jpg", url_part, i);
if season { if season {