mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 05:08:00 +02:00
closes #157
This commit is contained in:
parent
ea24de7061
commit
3519ef4b44
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ export function useMetadata(now, data) {
|
||||||
album = now.subtitle;
|
album = now.subtitle;
|
||||||
|
|
||||||
if (now.thumbnails) {
|
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',
|
sizes: t.width && t.height ? t.width + 'x' + t.height : '512x512',
|
||||||
src: t.url,
|
src: t.url,
|
||||||
type: 'image/webp',
|
type: 'image/webp',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue