Fix regression which caused playlist thumbnails to be low res
This commit is contained in:
parent
ac0bc125e4
commit
891808ed6f
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ fun PlaylistPreviewItem(
|
|||
imageContent = {
|
||||
if (thumbnails.toSet().size == 1) {
|
||||
AsyncImage(
|
||||
model = thumbnails.first(),
|
||||
model = thumbnails.first().thumbnail(thumbnailSizePx * 2),
|
||||
contentDescription = null,
|
||||
contentScale = ContentScale.Crop,
|
||||
modifier = Modifier
|
||||
|
|
Loading…
Reference in a new issue