Explorar el Código

fix alert showing up on tap on autocrypt setup message

cyberta hace 4 años
padre
commit
b3bf84b306
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      deltachat-ios/Chat/ChatViewController.swift

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

@@ -1080,7 +1080,11 @@ extension ChatViewController: BaseMessageCellDelegate {
     }
 
     @objc func textTapped(indexPath: IndexPath) {
-        _ = handleUIMenu()
+        if handleUIMenu() { return }
+        let message = DcMsg(id: messageIds[indexPath.row])
+        if message.isSetupMessage {
+            didTapAsm(msg: message, orgText: "")
+        }
     }
 
     @objc func phoneNumberTapped(number: String) {