From 98ee1af828f5c731d5c7687ec58c3260a6650748 Mon Sep 17 00:00:00 2001 From: Yasir Aris M Date: Mon, 22 Jan 2024 07:13:50 +0700 Subject: [PATCH] Pyrofork: Add is_slowmode_enabled in Chat --- pyrogram/types/user_and_chats/chat.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyrogram/types/user_and_chats/chat.py b/pyrogram/types/user_and_chats/chat.py index 3f3258e3..ca634192 100644 --- a/pyrogram/types/user_and_chats/chat.py +++ b/pyrogram/types/user_and_chats/chat.py @@ -196,6 +196,7 @@ class Chat(Object): is_join_request: bool = None, is_join_to_send: bool = None, is_antispam: bool = None, + is_slowmode_enabled: bool = None, title: str = None, username: str = None, first_name: str = None, @@ -239,6 +240,7 @@ class Chat(Object): self.is_join_request = is_join_request self.is_join_to_send = is_join_to_send self.is_antispam = is_antispam + self.is_slowmode_enabled = is_slowmode_enabled self.title = title self.username = username self.first_name = first_name @@ -347,6 +349,7 @@ class Chat(Object): is_forum=getattr(channel, "forum", None), is_join_request=getattr(channel, "join_request", None), is_join_to_send=getattr(channel, "join_to_send", None), + is_slowmode_enabled=getattr(channel, "slowmode_enabled", None) title=channel.title, username=user_name, usernames=usernames,