fix play from album (agaiiiiin!)

This commit is contained in:
geoffrey45
2022-12-28 20:15:36 +03:00
committed by Mungai Njoroge
parent 4d08ebedb6
commit 782bae52e5
9 changed files with 72 additions and 79 deletions
+1 -1
View File
@@ -118,7 +118,7 @@ const scrollerItems = computed(() => {
function playFromAlbum(index: number) {
const { title, albumartists, albumhash } = album.info;
queue.playFromAlbum(title, albumhash, album.allTracks);
queue.playFromAlbum(title, albumhash, album.srcTracks);
queue.play(index);
}