diff --git a/src/client.rs b/src/client.rs index e484c70..b66fbe9 100644 --- a/src/client.rs +++ b/src/client.rs @@ -339,7 +339,7 @@ pub async fn json(path: String, quarantine: bool) -> Result { 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())