From 82d3daada0c67e5bff071432832e43c76f227a94 Mon Sep 17 00:00:00 2001 From: MiyukiKun <81800569+MiyukiKun@users.noreply.github.com> Date: Fri, 2 Jul 2021 23:49:58 +0530 Subject: [PATCH] manage_call set to None by default manage_call in edit_admin #line 832 was set to true by default changed to none --- telethon/client/chats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telethon/client/chats.py b/telethon/client/chats.py index 1137544b..d712f698 100644 --- a/telethon/client/chats.py +++ b/telethon/client/chats.py @@ -829,7 +829,7 @@ class ChatMethods: invite_users: bool = None, pin_messages: bool = None, add_admins: bool = None, - manage_call: bool = True, + manage_call: bool = None, anonymous: bool = None, is_admin: bool = None, title: str = None) -> types.Updates: