소스 검색

make copying videochat invitations useful

when doing 'Copy to clipboard' for a videochat-invitation,
use the text text that includes the URL to clipboard;
this is also what android/desktop are doing.

before, only the text "Videotext Invitation" was copied,
which is quote pointless :)
B. Petersen 3 년 전
부모
커밋
74666e5ebb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)