Browse Source

don't show delivery line for info messages

cyberta 4 năm trước cách đây
mục cha
commit
dd1bad1a0f
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  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,
                                           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 {