mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-26 14:37:59 +01:00
catch and show exceptions thrown at cropping third party intents
This commit is contained in:
parent
550f42f110
commit
45844439dd
1 changed files with 3 additions and 0 deletions
|
@ -794,6 +794,9 @@ class EditActivity : SimpleActivity(), CropImageView.OnCropImageCompleteListener
|
||||||
inputStream = ByteArrayInputStream(stream.toByteArray())
|
inputStream = ByteArrayInputStream(stream.toByteArray())
|
||||||
outputStream = contentResolver.openOutputStream(saveUri)
|
outputStream = contentResolver.openOutputStream(saveUri)
|
||||||
inputStream.copyTo(outputStream!!)
|
inputStream.copyTo(outputStream!!)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
showErrorToast(e)
|
||||||
|
return
|
||||||
} finally {
|
} finally {
|
||||||
inputStream?.close()
|
inputStream?.close()
|
||||||
outputStream?.close()
|
outputStream?.close()
|
||||||
|
|
Loading…
Reference in a new issue