Update song queue status #129

Merged
kdeng00 merged 7 commits from update_song_queue_status into v0.2 2025-05-20 20:42:34 -04:00
Showing only changes of commit 2cf9b57429 - Show all commits
+1 -5
View File
@@ -55,11 +55,7 @@ pub mod status {
pub const DONE: &str = "done";
pub async fn is_valid(status: &str) -> bool {
if status == PENDING || status == PROCESSING || status == DONE {
true
} else {
false
}
status == PENDING || status == PROCESSING || status == DONE
}
}