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 = {
|
imageContent = {
|
||||||
if (thumbnails.toSet().size == 1) {
|
if (thumbnails.toSet().size == 1) {
|
||||||
AsyncImage(
|
AsyncImage(
|
||||||
model = thumbnails.first(),
|
model = thumbnails.first().thumbnail(thumbnailSizePx * 2),
|
||||||
contentDescription = null,
|
contentDescription = null,
|
||||||
contentScale = ContentScale.Crop,
|
contentScale = ContentScale.Crop,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
|
|
Loading…
Reference in a new issue