소스 검색

don't show delivery line for info messages

cyberta 4 년 전
부모
커밋
dd1bad1a0f
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  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 {