fix: queueStore.playFromAlbum receiving undefined album title

This commit is contained in:
geoffrey45
2022-05-24 16:06:44 +03:00
parent 770688838c
commit aa415519ef
3 changed files with 9 additions and 17 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ function play() {
queue.play(queue.tracks[0]);
break;
case playSources.album:
queue.playFromAlbum(album.info.album, album.info.artist, album.tracks);
queue.playFromAlbum(album.info.title, album.info.artist, album.tracks);
queue.play(album.tracks[0]);
break;
case playSources.playlist: