mirror of
https://github.com/figsoda/mmtc
synced 2024-11-21 22:53:02 +00:00
fix typo
This commit is contained in:
parent
62376aaf90
commit
1f7f7e483e
1 changed files with 3 additions and 1 deletions
|
@ -260,7 +260,9 @@ fn flatten(
|
|||
artist: Some(_), ..
|
||||
}),
|
||||
),
|
||||
Condition::AlbumExist => matches!(queue_track, Some(Track { album: Some(_), .. })),
|
||||
Condition::AlbumExist => {
|
||||
matches!(current_track, Some(Track { album: Some(_), .. }))
|
||||
}
|
||||
} {
|
||||
yes
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue