diff --git a/telegram.py b/telegram.py index cddcb58..74ef36a 100644 --- a/telegram.py +++ b/telegram.py @@ -103,15 +103,14 @@ class Notifier: return for chat_id in chat_ids: - self.__register_request_and_wait() + self.__count_request_and_wait() self.bot.send_message( chat_id=chat_id, text=f'Updates from the {feed_title} feed:' ) - for update in updates: - self.__register_request_and_wait() + self.__count_request_and_wait() self.__send_update(chat_id, update) def __send_update(self, chat_id: int, update: FeedItem):