Browse Source

disable swipe to reply for video chat invitations

cyberta 4 years ago
parent
commit
380a10ed35
1 changed files with 2 additions and 1 deletions
  1. 2 1
      deltachat-ios/Chat/ChatViewController.swift

+ 2 - 1
deltachat-ios/Chat/ChatViewController.swift

@@ -634,7 +634,8 @@ class ChatViewController: UITableViewController {
 
 
     override func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
-        if disableWriting || dcContext.getMessage(id: messageIds[indexPath.row]).isInfo {
+        let message = dcContext.getMessage(id: messageIds[indexPath.row])
+        if disableWriting || message.isInfo || message.type == DC_MSG_VIDEOCHAT_INVITATION {
             return nil
         }