catch exceptions thrown at ViewPagerActivity

This commit is contained in:
tibbi 2017-09-07 21:34:44 +02:00
parent 2c2ae9b6c4
commit 188e2f1254

View file

@ -91,8 +91,14 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
cursor?.close() cursor?.close()
} }
} else { } else {
mPath = intent.getStringExtra(MEDIUM) try {
mShowAll = config.showAll mPath = intent.getStringExtra(MEDIUM)
mShowAll = config.showAll
} catch (e: Exception) {
showErrorToast(e)
finish()
return
}
} }
if (mPath.isEmpty()) { if (mPath.isEmpty()) {