Fix Pedantic Clippy

Personally, I wouldn't follow this clippy, but what does it matter?
This commit is contained in:
Tokarak 2024-01-28 13:31:59 +00:00
parent 07ae76aa38
commit ac89401781

View file

@ -339,7 +339,7 @@ pub async fn json(path: String, quarantine: bool) -> Result<Value, String> {
error!("Got a bad response from reddit {e}. Status code: {status}");
if status == 401 { //Unauthorized; token expired
error!("Forcing a token refresh");
let _ = force_refresh_token().await;
let () = force_refresh_token().await;
}
if status.is_server_error() {
Err("Reddit is having issues, check if there's an outage".to_string())