mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-08-05 02:50:44 +00:00
fix: prioritize poster URL over image URL in ContinueWatchingPosterCard
This commit is contained in:
parent
9aab0bf277
commit
e3705548b5
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