Update custom_filters.py

This commit is contained in:
coder2020official 2021-09-14 15:02:54 +05:00
parent 86a0a8cd68
commit fc31a2d466
1 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ class ChatFilter(AdvancedCustomFilter):
class ForwardFilter(SimpleCustomFilter):
"""
Check whether message was forwarded.
Check whether message was forwarded from channel or group.
Example:
@ -97,7 +97,7 @@ class ForwardFilter(SimpleCustomFilter):
key = 'is_forwarded'
def check(self, message):
return message.forward_from is not None
return message.forward_from_chat is not None
class IsReplyFilter(SimpleCustomFilter):
"""