From fd63250f4c68738fd49d5830bdb4f0e92a81a85b Mon Sep 17 00:00:00 2001 From: phoenix Date: Thu, 13 Aug 2026 15:15:30 -0400 Subject: [PATCH] Got it working --- src/callers/queue/song.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/callers/queue/song.rs b/src/callers/queue/song.rs index a2b99f1..f5434f8 100644 --- a/src/callers/queue/song.rs +++ b/src/callers/queue/song.rs @@ -500,7 +500,7 @@ pub mod endpoint { println!("Valid song"); match repo::data::get_with_song_queue_id(&pool, &song_queue_id).await { - Ok((_id, file_key, _bucket, _region, _)) => { + Ok((id, file_key, _bucket, _region, _)) => { match lr.delete(&file_key).await { Ok(_response) => { let data = labyrinth::Data { @@ -520,7 +520,7 @@ pub mod endpoint { Ok(_) => { match repo::data::update_file_key( &pool, - &song_queue_id, + &id, &new_file_key, ) .await