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