Do not attempt to open a doc marked as "in progress" of download

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

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

Loading…
Cancel
Save