fix play from album page

+ setup favorites page
This commit is contained in:
geoffrey45
2022-12-28 12:17:58 +03:00
committed by Mungai Njoroge
parent d250928573
commit 62fb70d26c
10 changed files with 92 additions and 24 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ const scrollerItems = computed(() => {
function playFromAlbum(index: number) {
const { title, albumartists, albumhash } = album.info;
queue.playFromAlbum(title, albumhash, album.srcTracks);
queue.playFromAlbum(title, albumhash, album.allTracks);
queue.play(index);
}