From 3519ef4b44b53ecc8d46f660ccf4495b6559931c Mon Sep 17 00:00:00 2001 From: Shiny Nematoda Date: Wed, 24 Jan 2024 13:57:59 +0000 Subject: [PATCH] closes #157 --- src/scripts/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/util.js b/src/scripts/util.js index 3b1596b..a117251 100644 --- a/src/scripts/util.js +++ b/src/scripts/util.js @@ -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',