feat: update commit SHA, enhance audio player and full screen player with favorite functionality, and update various components to support starred tracks
This commit is contained in:
@@ -60,6 +60,7 @@ const FavoritesPage = () => {
|
||||
url: api?.getStreamUrl(song.id) || '',
|
||||
duration: song.duration,
|
||||
coverArt: song.coverArt ? api?.getCoverArtUrl(song.coverArt) : undefined,
|
||||
starred: !!song.starred
|
||||
});
|
||||
};
|
||||
|
||||
@@ -79,6 +80,7 @@ const FavoritesPage = () => {
|
||||
url: api.getStreamUrl(song.id),
|
||||
duration: song.duration,
|
||||
coverArt: song.coverArt ? api.getCoverArtUrl(song.coverArt) : undefined,
|
||||
starred: !!song.starred
|
||||
}));
|
||||
|
||||
playTrack(tracks[0]);
|
||||
|
||||
Reference in New Issue
Block a user