Fix continue watching movie image
This commit is contained in:
parent
1417d97223
commit
653d41c68a
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ fun bindBaseItemImage(imageView: ImageView, episode: BaseItemDto?) {
|
||||||
if (!episode.imageTags.isNullOrEmpty()) {
|
if (!episode.imageTags.isNullOrEmpty()) {
|
||||||
when (episode.type) {
|
when (episode.type) {
|
||||||
"Movie" -> {
|
"Movie" -> {
|
||||||
if (episode.imageTags!!.keys.contains(ImageType.BACKDROP)) {
|
if (!episode.backdropImageTags.isNullOrEmpty()) {
|
||||||
imageType = ImageType.BACKDROP
|
imageType = ImageType.BACKDROP
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue