fix an edge case of showing 'original message not found' incorrectly

pull/800/head
Ryan Zhao 2 years ago
parent cd3c1ee043
commit a0ba1484f5

@ -220,10 +220,10 @@ final class QuoteView: UIView {
} }
.defaulting( .defaulting(
to: attachment.map { to: attachment.map {
NSAttributedString(string: $0.shortDescription) NSAttributedString(string: $0.shortDescription, attributes: [ .foregroundColor: textColor ])
} }
) )
.defaulting(to: NSAttributedString(string: "Document")) .defaulting(to: NSAttributedString(string: "QUOTED_MESSAGE_NOT_FOUND".localized(), attributes: [ .foregroundColor: textColor ]))
} }
// Label stack view // Label stack view

@ -545,7 +545,7 @@ final class VisibleMessageCell: MessageCell, TappableLabelDelegate {
let quoteView: QuoteView = QuoteView( let quoteView: QuoteView = QuoteView(
for: .regular, for: .regular,
authorId: quote.authorId, authorId: quote.authorId,
quotedText: quote.body ?? "QUOTED_MESSAGE_NOT_FOUND".localized(), quotedText: quote.body,
threadVariant: cellViewModel.threadVariant, threadVariant: cellViewModel.threadVariant,
currentUserPublicKey: cellViewModel.currentUserPublicKey, currentUserPublicKey: cellViewModel.currentUserPublicKey,
currentUserBlindedPublicKey: cellViewModel.currentUserBlindedPublicKey, currentUserBlindedPublicKey: cellViewModel.currentUserBlindedPublicKey,

Loading…
Cancel
Save