mirror of
https://github.com/figsoda/mmtc
synced 2024-11-22 15:13:03 +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(_), ..
|
artist: Some(_), ..
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
Condition::AlbumExist => matches!(queue_track, Some(Track { album: Some(_), .. })),
|
Condition::AlbumExist => {
|
||||||
|
matches!(current_track, Some(Track { album: Some(_), .. }))
|
||||||
|
}
|
||||||
} {
|
} {
|
||||||
yes
|
yes
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue