mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-01-16 09:30:53 +01:00
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
Block a user