mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-09-02 15:46:45 +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)
|
Glide.with(imageView)
|
||||||
.load(bitmap)
|
.load(bitmap)
|
||||||
.into(imageView)
|
.into(imageView)
|
||||||
} else if(resId != null) {
|
} else if(resId != null && resId > 0) {
|
||||||
Glide.with(imageView)
|
Glide.with(imageView)
|
||||||
.load(resId)
|
.load(resId)
|
||||||
.into(imageView)
|
.into(imageView)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue