mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-23 04:57:59 +01:00
wrap whole picasso loading in a try/catch block
This commit is contained in:
parent
c708f183e2
commit
99f4a65dc1
1 changed files with 19 additions and 15 deletions
|
@ -267,6 +267,8 @@ class PhotoFragment : ViewPagerFragment() {
|
|||
|
||||
var pathToLoad = if (medium.path.startsWith("content://")) medium.path else "file://${medium.path}"
|
||||
pathToLoad = pathToLoad.replace("%", "%25").replace("#", "%23")
|
||||
|
||||
try {
|
||||
val picasso = Picasso.get()
|
||||
.load(pathToLoad)
|
||||
.centerInside()
|
||||
|
@ -286,6 +288,8 @@ class PhotoFragment : ViewPagerFragment() {
|
|||
|
||||
override fun onError(e: Exception) {}
|
||||
})
|
||||
} catch (ignored: Exception) {
|
||||
}
|
||||
}
|
||||
|
||||
private fun openPanorama() {
|
||||
|
|
Loading…
Reference in a new issue