deltachat-rpc-client: fix bug in Chat.send_message()

This commit is contained in:
adbenitez
2023-03-24 18:56:08 -04:00
parent 580ce5a9e9
commit 6d0327d057

View File

@@ -126,7 +126,7 @@ class Chat:
"file": file,
"location": location,
"overrideSenderName": override_sender_name,
"quotedMsgId": quoted_msg,
"quotedMessageId": quoted_msg,
}
msg_id = await self._rpc.send_msg(self.account.id, self.id, draft)
return Message(self.account, msg_id)