2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-28 21:07:59 +00:00

Fix restrict_chat and restrict_chat_member combined permissions

This commit is contained in:
Dan 2019-07-11 01:32:18 +02:00
parent 997a3c1626
commit f9ea45f987
2 changed files with 6 additions and 10 deletions

View File

@ -52,13 +52,13 @@ class RestrictChat(BaseClient):
can_send_other_messages (``bool``, *optional*):
Pass True, if the user can send animations, games, stickers and use inline bots,
implies can_send_media_messages.
implies can_send_messages.
can_add_web_page_previews (``bool``, *optional*):
Pass True, if the user may add web page previews to their messages, implies can_send_media_messages.
Pass True, if the user may add web page previews to their messages, implies can_send_messages.
can_send_polls (``bool``, *optional*):
Pass True, if the user can send polls, implies can_send_media_messages.
Pass True, if the user can send polls, implies can_send_messages.
can_change_info (``bool``, *optional*):
Pass True, if the user can change the chat title, photo and other settings.
@ -96,7 +96,6 @@ class RestrictChat(BaseClient):
if can_send_other_messages:
send_messages = None
send_media = None
send_stickers = None
send_gifs = None
send_games = None
@ -104,7 +103,6 @@ class RestrictChat(BaseClient):
if can_add_web_page_previews:
send_messages = None
send_media = None
embed_links = None
if can_send_polls:

View File

@ -65,13 +65,13 @@ class RestrictChatMember(BaseClient):
can_send_other_messages (``bool``, *optional*):
Pass True, if the user can send animations, games, stickers and use inline bots,
implies can_send_media_messages.
implies can_send_messages.
can_add_web_page_previews (``bool``, *optional*):
Pass True, if the user may add web page previews to their messages, implies can_send_media_messages.
Pass True, if the user may add web page previews to their messages, implies can_send_messages.
can_send_polls (``bool``, *optional*):
Pass True, if the user can send polls, implies can_send_media_messages.
Pass True, if the user can send polls, implies can_send_messages.
can_change_info (``bool``, *optional*):
Pass True, if the user can change the chat title, photo and other settings.
@ -109,7 +109,6 @@ class RestrictChatMember(BaseClient):
if can_send_other_messages:
send_messages = None
send_media = None
send_stickers = None
send_gifs = None
send_games = None
@ -117,7 +116,6 @@ class RestrictChatMember(BaseClient):
if can_add_web_page_previews:
send_messages = None
send_media = None
embed_links = None
if can_send_polls: