now supports sites

This commit is contained in:
Simon
2025-10-04 17:40:03 +00:00
parent 43a2d09a55
commit 7c73601954
2 changed files with 65 additions and 32 deletions

View File

@@ -118,7 +118,7 @@ impl Requester {
let response = request.send().await?;
if response.status().is_success() {
if response.status().is_success() || response.status().as_u16() == 404 {
return Ok(response.text().await?);
}