Code formatting

This commit is contained in:
kdeng00
2025-07-14 19:37:21 -04:00
parent 68686d4a30
commit 71c6ed4dbf
+4 -1
View File
@@ -824,7 +824,10 @@ pub mod endpoint {
} }
Err(err) => { Err(err) => {
let song_path = song.song_path(); 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::http::StatusCode::INTERNAL_SERVER_ERROR,
axum::Json(response), axum::Json(response),