fix: prioritize poster URL over image URL in ContinueWatchingPosterCard

This commit is contained in:
tapframe 2026-04-06 12:36:29 +05:30
parent 27b162176a
commit 99f251ac4e

View file

@ -317,7 +317,7 @@ private fun ContinueWatchingPosterCard(
)
.posterCardClickable(onClick = onClick, onLongClick = onLongClick),
) {
val imageUrl = item.imageUrl
val imageUrl = item.poster ?: item.imageUrl
if (imageUrl != null) {
AsyncImage(
model = imageUrl,