|
|
|
@ -191,6 +191,7 @@ class VisibleMessageContentView : ConstraintLayout {
|
|
|
|
|
if (mediaDownloaded || mediaInProgress || message.isOutgoing) {
|
|
|
|
|
binding.documentView.root.bind(message, getTextColor(context, message))
|
|
|
|
|
message.slideDeck.documentSlide?.let { slide ->
|
|
|
|
|
if(!mediaInProgress) { // do not attempt to open a doc in progress of downloading
|
|
|
|
|
onContentClick.add {
|
|
|
|
|
// open the document when tapping it
|
|
|
|
|
try {
|
|
|
|
@ -212,6 +213,7 @@ class VisibleMessageContentView : ConstraintLayout {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// If the document hasn't been downloaded yet then show it as pending
|
|
|
|
|
(message.slideDeck.documentSlide?.asAttachment() as? DatabaseAttachment)?.let { attachment ->
|
|
|
|
|