From 474619a858e9ff5b65e4000e502a40ae55a7e1a1 Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Sun, 23 Jan 2022 11:38:45 -0800 Subject: [PATCH] [RSS] Don't clean config on dead channels --- rss/rss.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/rss/rss.py b/rss/rss.py index f57d7b7..8f11499 100644 --- a/rss/rss.py +++ b/rss/rss.py @@ -29,7 +29,7 @@ IPV4_RE = re.compile("\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}") IPV6_RE = re.compile("([a-f0-9:]+:+)+[a-f0-9]+") -__version__ = "1.6.6" +__version__ = "1.7.0" class RSS(commands.Cog): @@ -1632,10 +1632,6 @@ class RSS(commands.Cog): for channel_id, channel_feed_list in config_data.items(): channel = await self._get_channel_object(channel_id) if not channel: - log.info( - f"Response channel {channel_id} not found, forbidden to access, or no perms to send messages, removing channel from config" - ) - await self.config.channel_from_id(int(channel_id)).clear() # Remove entries from dead channel continue if await self.bot.cog_disabled_in_guild(self, channel.guild):