Explorar o código

Merge pull request #1392 from deltachat/copy-videochat-urls

make copying videochat invitations useful
bjoern %!s(int64=3) %!d(string=hai) anos
pai
achega
51beda17dd
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      deltachat-ios/Chat/ChatViewController.swift

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

@@ -148,7 +148,7 @@ class ChatViewController: UITableViewController {
                 let msg = self.dcContext.getMessage(id: id)
 
                 let pasteboard = UIPasteboard.general
-                if msg.type == DC_MSG_TEXT {
+                if msg.type == DC_MSG_TEXT || msg.type == DC_MSG_VIDEOCHAT_INVITATION {
                     pasteboard.string = msg.text
                 } else {
                     pasteboard.string = msg.summary(chars: 10000000)