fix another crash in ViewImageFragment

This commit is contained in:
Conny Duck 2018-12-12 19:37:18 +01:00
parent a0c399e2cf
commit c3e5305fa2

View File

@ -105,8 +105,10 @@ class ViewImageFragment : ViewMediaFragment() {
override fun onError() { override fun onError() {
// if there's no image in cache, load from network and start transition // if there's no image in cache, load from network and start transition
// immediately. // immediately.
photoActionsListener.onBringUp() if (isAdded) {
loadImageFromNetwork(url, photoView) photoActionsListener.onBringUp()
loadImageFromNetwork(url, photoView)
}
} }
}) })
} else { } else {