Эх сурвалжийг харах

fix message type for voice messages

cyberta 5 жил өмнө
parent
commit
ce6425a2f6

+ 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)
         }