mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-02-09 08:38:40 +01:00
wrap whole picasso loading in a try/catch block
This commit is contained in:
parent
c708f183e2
commit
99f4a65dc1
@ -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…
x
Reference in New Issue
Block a user