catch exceptions thrown at ViewPagerActivity

This commit is contained in:
tibbi 2017-09-07 21:34:44 +02:00
parent 2c2ae9b6c4
commit 188e2f1254
1 changed files with 8 additions and 2 deletions

View File

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