feat: Update cover art retrieval to use higher resolution images and enhance download manager with new features

This commit is contained in:
2025-08-10 02:06:39 +00:00
committed by GitHub
parent 7e6a28e4f4
commit 7a1c7e1eae
8 changed files with 189 additions and 46 deletions

View File

@@ -60,7 +60,7 @@ export function useFavoriteAlbums() {
id: album.id,
name: album.name,
artist: album.artist,
coverArt: album.coverArt ? api.getCoverArtUrl(album.coverArt, 64) : undefined
coverArt: album.coverArt ? api.getCoverArtUrl(album.coverArt, 300) : undefined
};
addFavoriteAlbum(favoriteAlbum);
}