From 80856b853b49b53322425a90ae801bca760cf740 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 7 Aug 2021 21:36:51 +0000 Subject: Use `dc_send_msg` to send messages `dc_send_text_msg` is too limited as it can only send text without attachments. --- qml/ComposePane.qml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'qml/ComposePane.qml') diff --git a/qml/ComposePane.qml b/qml/ComposePane.qml index 5ba77f5..dab07f1 100644 --- a/qml/ComposePane.qml +++ b/qml/ComposePane.qml @@ -48,7 +48,12 @@ Pane { text: qsTr("Send") enabled: messageField.length > 0 onClicked: { - root.context.sendTextMessage(chatId, messageField.text) + let DC_MSG_TEXT = 10; + + let msg = root.context.newMessage(DC_MSG_TEXT); + msg.setText(messageField.text) + root.context.sendMessage(root.chatId, msg) + messageField.text = "" root.context.setDraft(chatId, null) } -- cgit v1.2.3-54-g00ecf