Эх сурвалжийг харах

don't show delivery line for info messages

cyberta 4 жил өмнө
parent
commit
dd1bad1a0f

+ 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 {