Skip to content

Commit

Permalink
display vcard type
Browse files Browse the repository at this point in the history
  • Loading branch information
r10s committed May 29, 2024
1 parent a3c703e commit 01515e9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions deltachat-ios/Chat/ChatViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down

0 comments on commit 01515e9

Please sign in to comment.