From 92a2bd5b73c1a42d5957119d948b659c470fa2ff Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Mon, 15 Mar 2021 09:36:55 -0700 Subject: [PATCH] [RSS] Fetch channel fix --- rss/rss.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rss/rss.py b/rss/rss.py index 3cce07c..3f7a3a8 100644 --- a/rss/rss.py +++ b/rss/rss.py @@ -25,7 +25,7 @@ from .tag_type import INTERNAL_TAGS, VALID_IMAGES, TagType log = logging.getLogger("red.aikaterna.rss") -__version__ = "1.4.2" +__version__ = "1.4.3" class RSS(commands.Cog): @@ -315,7 +315,7 @@ class RSS(commands.Cog): channel = self.bot.get_channel(channel_id) if not channel: try: - channel = self.bot.fetch_channel(channel_id) + channel = await self.bot.fetch_channel(channel_id) except (discord.errors.Forbidden, discord.errors.NotFound): return None if channel and channel.permissions_for(channel.guild.me).send_messages: