[bugfix]: Jellyfin do not force width = height for images

This commit is contained in:
Kendall Garner 2024-08-15 23:35:29 -07:00
parent 08db18359a
commit e4ca0164fa
No known key found for this signature in database
GPG key ID: 18D2767419676C87

View file

@ -53,7 +53,7 @@ const getAlbumArtistCoverArtUrl = (args: {
`${args.baseUrl}/Items` +
`/${args.item.Id}` +
'/Images/Primary' +
`?width=${size}&height=${size}` +
`?width=${size}&` +
'&quality=96'
);
};