Fix: PosterCard should use imageItemId for image URL retrieval

This commit is contained in:
2026-01-21 20:19:44 +01:00
parent 474d07e49f
commit b0db4644f5

View File

@@ -46,7 +46,7 @@ fun PosterCard(
.width(144.dp) .width(144.dp)
) { ) {
AsyncImage( AsyncImage(
model = viewModel.getImageUrl(item.id, ImageType.PRIMARY), model = viewModel.getImageUrl(item.imageItemId, ImageType.PRIMARY),
contentDescription = null, contentDescription = null,
modifier = Modifier modifier = Modifier
.aspectRatio(2f / 3f) .aspectRatio(2f / 3f)