ソースを参照

disable swipe to reply for video chat invitations

cyberta 4 年 前
コミット
380a10ed35
1 ファイル変更2 行追加1 行削除
  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
         }