adding a few more checks at activity state at loading fullscreen images
This commit is contained in:
parent
9d2026e639
commit
bee4b0ff72
|
@ -373,7 +373,7 @@ class PhotoFragment : ViewPagerFragment() {
|
|||
.apply(options)
|
||||
.listener(object : RequestListener<Drawable> {
|
||||
override fun onLoadFailed(e: GlideException?, model: Any?, target: Target<Drawable>?, isFirstResource: Boolean): Boolean {
|
||||
if (activity != null) {
|
||||
if (activity != null && !activity!!.isDestroyed && !activity!!.isFinishing) {
|
||||
tryLoadingWithPicasso(addZoomableView)
|
||||
}
|
||||
return false
|
||||
|
|
Loading…
Reference in New Issue