mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 13:37:40 +03:00
fix: refresh oauth token by spawning a new task
This commit is contained in:
parent
8ef45456d6
commit
7a856a7f3c
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue