From 1a47edf9db5e25b91bbc52c77ada19e32236ec12 Mon Sep 17 00:00:00 2001 From: _run Date: Sun, 21 Jul 2024 18:27:45 +0500 Subject: [PATCH] Fix #2339 --- telebot/asyncio_filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telebot/asyncio_filters.py b/telebot/asyncio_filters.py index da794b77b..f4e594a7a 100644 --- a/telebot/asyncio_filters.py +++ b/telebot/asyncio_filters.py @@ -301,7 +301,7 @@ async def check(self, message): """ :meta private: """ - return message.forward_date is not None + return message.forward_origin is not None class IsReplyFilter(SimpleCustomFilter):