fix: refresh oauth token by spawning a new task

This commit is contained in:
Pim 2024-09-17 13:02:49 +02:00 committed by GitHub
parent 8ef45456d6
commit 7a856a7f3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -265,7 +265,7 @@ fn request(method: &'static Method, path: String, redirect: bool, quarantine: bo
// Special condition rate limiting - https://github.com/redlib-org/redlib/issues/229
if response.status() == StatusCode::FORBIDDEN && response.headers().get("retry-after").unwrap_or(&HeaderValue::from_static("0")).to_str().unwrap_or("0") == "0" {
force_refresh_token().await;
tokio::spawn(force_refresh_token());
return Err("Rate limit - try refreshing soon".to_string());
}