From 01515e9694375174492e86f7bd1d1fd344536a4e Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Wed, 29 May 2024 18:03:49 +0200 Subject: [PATCH] display vcard type --- deltachat-ios/Chat/ChatViewController.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deltachat-ios/Chat/ChatViewController.swift b/deltachat-ios/Chat/ChatViewController.swift index 17a959b1b..cefc8e4e3 100644 --- a/deltachat-ios/Chat/ChatViewController.swift +++ b/deltachat-ios/Chat/ChatViewController.swift @@ -654,6 +654,9 @@ class ChatViewController: UITableViewController, UITableViewDropDelegate { audioController.update(audioMessageCell, with: message.id) cell = audioMessageCell } + case DC_MSG_VCARD: + cell = tableView.dequeueReusableCell(withIdentifier: "text", for: indexPath) as? TextMessageCell ?? TextMessageCell() + message.text = "👤 Contact" default: cell = tableView.dequeueReusableCell(withIdentifier: "text", for: indexPath) as? TextMessageCell ?? TextMessageCell() }