mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-27 03:22:53 +00:00
fix: prioritize poster URL over image URL in ContinueWatchingPosterCard
This commit is contained in:
parent
27b162176a
commit
99f251ac4e
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue