From 23af72fb3e0385b48f76af2a254d3526b1bdf149 Mon Sep 17 00:00:00 2001 From: ryanzhao Date: Tue, 31 May 2022 16:37:19 +1000 Subject: [PATCH] minor ui fix --- Session/Conversations/Message Cells/VisibleMessageCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Session/Conversations/Message Cells/VisibleMessageCell.swift b/Session/Conversations/Message Cells/VisibleMessageCell.swift index dc352de16..18480d2d4 100644 --- a/Session/Conversations/Message Cells/VisibleMessageCell.swift +++ b/Session/Conversations/Message Cells/VisibleMessageCell.swift @@ -282,7 +282,7 @@ final class VisibleMessageCell : MessageCell, LinkPreviewViewDelegate { messageStatusImageView.tintColor = tintColor messageStatusImageView.backgroundColor = backgroundColor if let message = message as? TSOutgoingMessage { - messageStatusImageView.isHidden = (message.isCallMessage || message.messageState == .sent && thread?.lastInteraction != message) + messageStatusImageView.isHidden = (message.isCallMessage || message.messageState == .sent && thread?.lastInteraction.uniqueId != message.uniqueId) } else { messageStatusImageView.isHidden = true }