From 18426561e3128d9c017a78706e84d7ffb83705a4 Mon Sep 17 00:00:00 2001 From: adbenitez Date: Thu, 1 Dec 2022 00:14:07 -0500 Subject: [PATCH] fix bug in chat.get_encryption_info() --- deltachat-rpc-client/src/deltachat_rpc_client/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/chat.py b/deltachat-rpc-client/src/deltachat_rpc_client/chat.py index 99d616862..00b61bb35 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/chat.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/chat.py @@ -16,7 +16,7 @@ class Chat: await self.rpc.delete_chat(self.account_id, self.chat_id) async def get_encryption_info(self): - await self.rpc.get_chat_encryption_info(self.account_id, self.chat_id) + return await self.rpc.get_chat_encryption_info(self.account_id, self.chat_id) async def send_text(self, text: str): from .message import Message