Browse Source

don't show delivery line for info messages

cyberta 4 years ago
parent
commit
dd1bad1a0f
1 changed files with 3 additions and 1 deletions
  1. 3 1
      deltachat-ios/Chat/Views/Cells/BaseMessageCell.swift

+ 3 - 1
deltachat-ios/Chat/Views/Cells/BaseMessageCell.swift

@@ -97,7 +97,9 @@ public class BaseMessageCell: UITableViewCell {
         messageBackgroundContainer.update(rectCorners: messageStyle,
         messageBackgroundContainer.update(rectCorners: messageStyle,
                                           color: msg.isFromCurrentSender ? DcColors.messagePrimaryColor : DcColors.messageSecondaryColor)
                                           color: msg.isFromCurrentSender ? DcColors.messagePrimaryColor : DcColors.messageSecondaryColor)
 
 
-        bottomLabel.attributedText = getFormattedBottomLine(message: msg)
+        if !msg.isInfo {
+            bottomLabel.attributedText = getFormattedBottomLine(message: msg)
+        }
     }
     }
 
 
     func getFormattedBottomLine(message: DcMsg) -> NSAttributedString {
     func getFormattedBottomLine(message: DcMsg) -> NSAttributedString {