From 4674cc926c5dcf4c4d9ffcf8942e613631e8f4ad Mon Sep 17 00:00:00 2001 From: BreadTube Date: Tue, 4 Nov 2025 20:38:52 +0900 Subject: [PATCH] Keep refreshing subscriptions if a channel errored --- breadtube_bot/bot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/breadtube_bot/bot.py b/breadtube_bot/bot.py index 359294f..803b59d 100644 --- a/breadtube_bot/bot.py +++ b/breadtube_bot/bot.py @@ -447,6 +447,8 @@ class Bot: for sub_info in sorted_subs: try: self._refresh_sub(sub_info, channel_dict, category_ranges) + except RuntimeError as error: + self.logger.error('Refreshing subscription %s failed: %s', sub_info.channel_id, error) except TimeoutError as error: self.logger.error('Timeout error refreshing subcription: %s', error) break