tsk-211: Fixing error on getting queue item

This commit is contained in:
kdeng00
2025-10-22 20:43:01 -04:00
parent 381dd49b56
commit 9b4d23d73f
+3 -1
View File
@@ -97,10 +97,12 @@ pub async fn get_most_recent_and_update(pool: &sqlx::PgPool) -> Result<SongQueue
.bind(status::PROCESSING)
.bind(status::READY)
.fetch_one(pool)
.await
.await;
/*
.map_err(|e| {
eprintln!("Error inserting: {e}");
});
*/
match result {
Ok(row) => {