This commit is contained in:
Simon
2026-01-14 11:30:32 +00:00
parent cce6104df3
commit 602dbe50f0
4 changed files with 32 additions and 13 deletions

View File

@@ -212,7 +212,7 @@ impl HypnotubeProvider {
.await
.unwrap();
if text.contains("Sorry, no results were found.") {
eprint!("Hypnotube query returned no results for page {}", page);
eprintln!("Hypnotube query returned no results for page {}", page);
return vec![];
}
let video_items: Vec<VideoItem> = self.get_video_items_from_html(text.clone()).await;