diff --git a/CHANGELOG.md b/CHANGELOG.md index c07117307..d867f30bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Changes ### Fixes +- deltachat-rpc-client: fix bug in `Chat.send_message()`: invalid `MessageData` field `quotedMsg` instead of `quotedMsgId` ## [1.112.0] - 2023-03-23 diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/chat.py b/deltachat-rpc-client/src/deltachat_rpc_client/chat.py index 2d33a300e..ad1cd70c9 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/chat.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/chat.py @@ -126,7 +126,7 @@ class Chat: "file": file, "location": location, "overrideSenderName": override_sender_name, - "quotedMsg": quoted_msg, + "quotedMsgId": quoted_msg, } msg_id = await self._rpc.send_msg(self.account.id, self.id, draft) return Message(self.account, msg_id)