From 340470c9f4fec5030b8bb09c2530dd7a581c7d95 Mon Sep 17 00:00:00 2001 From: Ilesh Thiada Date: Sun, 6 Aug 2023 20:03:32 +0000 Subject: [PATCH] Fix lint --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 2fab7dd..5cad22d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -454,7 +454,7 @@ fn check_empty_profile(profile: &Profile) -> Result<()> { async fn check_internet() -> Result<()> { let client = reqwest::Client::default(); client - .get(&*ferinth::BASE_URL.as_ref()) + .get(ferinth::BASE_URL.as_ref()) .send() .await? .error_for_status()?;