Making sure we do not crash when trying to open a document that hasn't yet been downloaded

pull/1710/head
ThomasSession 3 weeks ago
parent e95fa6cc03
commit fd45cdf568

@ -193,14 +193,14 @@ class VisibleMessageContentView : ConstraintLayout {
message.slideDeck.documentSlide?.let { slide ->
onContentClick.add {
// open the document when tapping it
val intent = Intent(Intent.ACTION_VIEW)
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
intent.setDataAndType(
PartAuthority.getAttachmentPublicUri(slide.uri),
slide.contentType
)
try {
val intent = Intent(Intent.ACTION_VIEW)
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
intent.setDataAndType(
PartAuthority.getAttachmentPublicUri(slide.uri),
slide.contentType
)
context.startActivity(intent)
} catch (e: ActivityNotFoundException) {
Log.e("VisibleMessageContentView", "Error opening document", e)

Loading…
Cancel
Save