tsk-211: Fix SQL error when checking queue (#217)

* tsk-211: Fixing error on getting queue item

* tsk-211: Some cleanup

* tsk-211: Cleanup

* tsk-211: Updated readme

* tsk-211: Version bump
This commit was merged in pull request #217.
This commit is contained in:
KD
2025-10-22 21:42:19 -04:00
committed by GitHub
parent 381dd49b56
commit 351b4acb1c
5 changed files with 8 additions and 19 deletions
+1 -4
View File
@@ -97,10 +97,7 @@ pub async fn get_most_recent_and_update(pool: &sqlx::PgPool) -> Result<SongQueue
.bind(status::PROCESSING)
.bind(status::READY)
.fetch_one(pool)
.await
.map_err(|e| {
eprintln!("Error inserting: {e}");
});
.await;
match result {
Ok(row) => {