mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
Fixed a bug in the new play queue overlay popup's column name handling.
This commit is contained in:
parent
2e1411e80b
commit
e97d948e91
@ -339,8 +339,9 @@ void PlayQueueOverlays::ShowAlbumDividerOverlay(
|
||||
return;
|
||||
}
|
||||
|
||||
auto albumColumn = library::constants::Track::ALBUM_ID;
|
||||
auto albumId = firstTrack->GetUint64(albumColumn);
|
||||
auto albumIdColumn = library::constants::Track::ALBUM_ID;
|
||||
auto albumColumn = library::constants::Track::ALBUM;
|
||||
auto albumId = firstTrack->GetUint64(albumIdColumn);
|
||||
|
||||
if (index == 0) {
|
||||
messageQueue.Broadcast(runtime::Message::Create(
|
||||
|
Loading…
Reference in New Issue
Block a user