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