mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-09-01 15:19:17 +00:00
Fix synced ImageVariables showing black images
This commit is contained in:
parent
1e790d1aa9
commit
a1ce5eda43
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ data class ImageVariable(
|
|||
Glide.with(imageView)
|
||||
.load(bitmap)
|
||||
.into(imageView)
|
||||
} else if(resId != null) {
|
||||
} else if(resId != null && resId > 0) {
|
||||
Glide.with(imageView)
|
||||
.load(resId)
|
||||
.into(imageView)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue