adding a few more checks at activity state at loading fullscreen images

This commit is contained in:
tibbi 2019-03-09 23:30:02 +01:00
parent 9d2026e639
commit bee4b0ff72
1 changed files with 1 additions and 1 deletions

View File

@ -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