This commit is contained in:
Shiny Nematoda 2024-01-24 13:57:59 +00:00
parent ea24de7061
commit 3519ef4b44

View file

@ -79,7 +79,7 @@ export function useMetadata(now, data) {
album = now.subtitle;
if (now.thumbnails) {
artwork = now.thumbnails.reverse().map(t => ({
artwork = [...now.thumbnails].reverse().map(t => ({
sizes: t.width && t.height ? t.width + 'x' + t.height : '512x512',
src: t.url,
type: 'image/webp',