From 71c6ed4dbf337aae1099503818261678dfa3254e Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Mon, 14 Jul 2025 19:37:21 -0400 Subject: [PATCH] Code formatting --- src/callers/song.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/callers/song.rs b/src/callers/song.rs index bf17ca9..f8ee210 100644 --- a/src/callers/song.rs +++ b/src/callers/song.rs @@ -824,7 +824,10 @@ pub mod endpoint { } Err(err) => { let song_path = song.song_path(); - response.message = format!("{err:?} Song directory: {} Filename: {} Save Path: {:?} Song Path: {:?}", song.directory, song.filename, save_path, song_path); + response.message = format!( + "{err:?} Song directory: {} Filename: {} Save Path: {:?} Song Path: {:?}", + song.directory, song.filename, save_path, song_path + ); ( axum::http::StatusCode::INTERNAL_SERVER_ERROR, axum::Json(response),