From 99f251ac4e71e1a299334e6e5af7f7cfd09014cb Mon Sep 17 00:00:00 2001 From: tapframe <85391825+tapframe@users.noreply.github.com> Date: Mon, 6 Apr 2026 12:36:29 +0530 Subject: [PATCH] fix: prioritize poster URL over image URL in ContinueWatchingPosterCard --- .../app/features/home/components/HomeContinueWatchingSection.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composeApp/src/commonMain/kotlin/com/nuvio/app/features/home/components/HomeContinueWatchingSection.kt b/composeApp/src/commonMain/kotlin/com/nuvio/app/features/home/components/HomeContinueWatchingSection.kt index e22d0922..1fc81b81 100644 --- a/composeApp/src/commonMain/kotlin/com/nuvio/app/features/home/components/HomeContinueWatchingSection.kt +++ b/composeApp/src/commonMain/kotlin/com/nuvio/app/features/home/components/HomeContinueWatchingSection.kt @@ -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,