Got it working

This commit is contained in:
kdeng00
2025-04-26 18:00:13 -04:00
parent 0f00d89809
commit 9d8bfbf7c8
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -246,7 +246,7 @@ const ALLOWED_EXTENSION: &str = "flac";
pub async fn download_flac(
axum::Extension(pool): axum::Extension<sqlx::PgPool>,
axum::extract::Path(id): axum::extract::Path<uuid::Uuid>) -> (StatusCode, axum::response::Response) {
pritnln!("Id: {:?}", id);
println!("Id: {:?}", id);
match song_queue::get_data(&pool, &id).await {
Ok(data) => {