From 24304f69bcd417b7be428b36a3cc4a6f378ebb17 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sun, 19 Oct 2025 20:28:56 -0400 Subject: [PATCH] Warning fix --- src/callers/song.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callers/song.rs b/src/callers/song.rs index 867cf73..c45d202 100644 --- a/src/callers/song.rs +++ b/src/callers/song.rs @@ -1523,7 +1523,7 @@ pub mod endpoint { Ok(deleted_coverart) => { match std::fs::remove_file(song_path) { Ok(_) => match std::fs::remove_file( - &coverart_path, + coverart_path, ) { Ok(_) => { response.message = String::from(super::super::response::SUCCESSFUL);