removed spam print

This commit is contained in:
Simon
2025-07-13 14:05:01 +00:00
parent 2c38a2fa6e
commit fe8c564126

View File

@@ -244,7 +244,7 @@ impl SpankbangProvider {
let mut response = response; let mut response = response;
while response.status().as_u16() == 429 { while response.status().as_u16() == 429 {
println!("Received 429 Too Many Requests. Waiting 10 seconds before retrying..."); // println!("Received 429 Too Many Requests. Waiting 10 seconds before retrying...");
ntex::time::sleep(ntex::time::Seconds(60)).await; ntex::time::sleep(ntex::time::Seconds(60)).await;
response = client.get(url.clone()).header("Cookie", cookies.clone()).send().await?; response = client.get(url.clone()).header("Cookie", cookies.clone()).send().await?;
} }