فهرست منبع

fix message type for voice messages

cyberta 5 سال پیش
والد
کامیت
ce6425a2f6
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      deltachat-ios/Controller/ChatViewController.swift

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

@@ -792,7 +792,7 @@ extension ChatViewController: MessagesDataSource {
 
     private func sendVoiceMessage(url: NSURL) {
         DispatchQueue.global().async {
-            let msg = DcMsg(viewType: DC_MSG_AUDIO)
+            let msg = DcMsg(viewType: DC_MSG_VOICE)
             msg.setFile(filepath: url.relativePath, mimeType: "audio/m4a")
             msg.sendInChat(id: self.chatId)
         }