title bugfix

This commit is contained in:
Simon
2026-01-13 21:40:51 +00:00
parent 34992242b7
commit cce6104df3

View File

@@ -227,7 +227,7 @@ impl SxyprnProvider {
let title_parts = video_segment
.split("post_text")
.nth(1)
.and_then(|s| s.split("style=''>").nth(100000))
.and_then(|s| s.split("style=''>").nth(1))
.and_then(|s| s.split("</div>").next())
.ok_or_else(|| ErrorKind::Parse("failed to extract title_parts".into()))?;