catch exceptions thrown at ViewPagerActivity
This commit is contained in:
parent
2c2ae9b6c4
commit
188e2f1254
|
@ -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()) {
|
||||
|
|
Loading…
Reference in New Issue