vidara and cargo updates

This commit is contained in:
Simon
2026-05-05 12:25:43 +00:00
committed by ForgeCode
parent 8ae0fcb544
commit 01306c508a
5 changed files with 40 additions and 43 deletions

View File

@@ -202,7 +202,7 @@ impl FreeusepornProvider {
.await
.map_err(|error| format!("search submit failed url={search_url}; error={error}"))?;
Ok(response.uri().to_string().trim_end_matches('/').to_string())
Ok(response.url().to_string().trim_end_matches('/').to_string())
}
fn build_formats(&self, id: &str) -> Vec<VideoFormat> {

View File

@@ -405,7 +405,7 @@ impl YespornProvider {
)));
}
let canonical_url = response.uri().to_string();
let canonical_url = response.url().to_string();
let body = response
.text()
.await