You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also in the code bellow, error drawable is not used when the url is null, and docs state: "null models will cause the error drawable to be displayed", this is working in the latest 3.x version.
Glide load line / GlideModule (if any) / list Adapter code (if any):
GlideApp.with(this).load(contractImage) // contractImage is null
.transform(new CropCircleTransformation())
.error(errorDrawable)
.into(imageView);
The text was updated successfully, but these errors were encountered:
From @mare011 in #1971:
Also in the code bellow, error drawable is not used when the url is null, and docs state: "null models will cause the error drawable to be displayed", this is working in the latest 3.x version.
Glide load line / GlideModule (if any) / list Adapter code (if any):
GlideApp.with(this).load(contractImage) // contractImage is null
.transform(new CropCircleTransformation())
.error(errorDrawable)
.into(imageView);
The text was updated successfully, but these errors were encountered: