diff --git a/deltachat-ios/Chat/ChatViewController.swift b/deltachat-ios/Chat/ChatViewController.swift index e8c85711a..b4faf3aee 100644 --- a/deltachat-ios/Chat/ChatViewController.swift +++ b/deltachat-ios/Chat/ChatViewController.swift @@ -657,6 +657,9 @@ class ChatViewController: UITableViewController, UITableViewDropDelegate { case DC_MSG_VCARD: cell = tableView.dequeueReusableCell(withIdentifier: "text", for: indexPath) as? TextMessageCell ?? TextMessageCell() message.text = "👤 Contact" + if let file = message.file, let vcards = dcContext.parseVcard(path: file), let vcard = vcards.first { + message.text = "👤 " + vcard.displayName + } default: cell = tableView.dequeueReusableCell(withIdentifier: "text", for: indexPath) as? TextMessageCell ?? TextMessageCell() }