fix bug in chat.get_encryption_info()

This commit is contained in:
adbenitez
2022-12-01 00:14:07 -05:00
parent aeb7e3a9e1
commit 18426561e3

View File

@@ -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