Refresh token conditionally on 401 code

This commit is contained in:
Tokarak 2024-01-28 13:16:53 +00:00
parent 03e267f02e
commit ad563cf415

View file

@ -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 {