From 9776feabc3a88cd2a56e2e09b5d26b8c62f5dcea Mon Sep 17 00:00:00 2001 From: bakatrouble Date: Fri, 25 Jul 2025 15:03:03 +0300 Subject: [PATCH] fix --- bots/modules/channel_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/modules/channel_helper.py b/bots/modules/channel_helper.py index f03f8ce..2444229 100644 --- a/bots/modules/channel_helper.py +++ b/bots/modules/channel_helper.py @@ -100,7 +100,7 @@ class ChannelHelperBotModuleConfig(TelegramBotModuleConfig): def rpc_get_hashes(self): config._reload_maybe() - return list(self.queued_items.filter(type='photo', processed=False) + return list(self.queued_items.filter(type='photo') .exclude(image_hash__isnull=True) .values_list('image_hash', flat=True))