diff --git a/src/cogs/auto_responder.py b/src/cogs/auto_responder.py index c4bd2eb..1ea5836 100644 --- a/src/cogs/auto_responder.py +++ b/src/cogs/auto_responder.py @@ -366,7 +366,7 @@ class AutoResponder(commands.Cog): extra = [attachment.url for attachment in reaction.message.attachments] if self.allow_on_demand_transcoding: await self.transcode_hevc_to_h264(reaction.message, additional=extra) - if reaction.emoji == discord.PartialEmoji.from_str("\U0001f310"): + if reaction.emoji.name == "\U0001f310": if reaction.message.id not in self.lmgtfy_cache: url = "https://lmgtfy2.com/?q=" + quote_plus(reaction.message.content) m = await reaction.message.reply(f"[Here's the answer to your question]({url})")