From ac89401781bcbbf5f0de59256ffe3077c95acdaa Mon Sep 17 00:00:00 2001 From: Tokarak <63452145+Tokarak@users.noreply.github.com> Date: Sun, 28 Jan 2024 13:31:59 +0000 Subject: [PATCH] Fix Pedantic Clippy Personally, I wouldn't follow this clippy, but what does it matter? --- src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())