mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 05:57:40 +03:00
Refresh token conditionally on 401 code
This commit is contained in:
parent
03e267f02e
commit
ad563cf415
1 changed files with 5 additions and 2 deletions
|
@ -336,8 +336,11 @@ pub async fn json(path: String, quarantine: bool) -> Result<Value, String> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
error!("Got a bad response from reddit {e} - forcing a token refresh. Status code: {status}");
|
error!("Got a bad response from reddit {e}. Status code: {status}");
|
||||||
let () = force_refresh_token().await;
|
if status == 401 { //Unauthorized; token expired
|
||||||
|
error!("Forcing a token refresh")
|
||||||
|
let _ = force_refresh_token().await;
|
||||||
|
}
|
||||||
if status.is_server_error() {
|
if status.is_server_error() {
|
||||||
Err("Reddit is having issues, check if there's an outage".to_string())
|
Err("Reddit is having issues, check if there's an outage".to_string())
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue