From 2c713855324d7b73476458872c427d9141e4ba65 Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Wed, 15 May 2024 17:28:53 +0100 Subject: [PATCH] use lmddgtfy instead of lmgtfy --- src/cogs/auto_responder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cogs/auto_responder.py b/src/cogs/auto_responder.py index 1ea5836..544ca72 100644 --- a/src/cogs/auto_responder.py +++ b/src/cogs/auto_responder.py @@ -368,7 +368,7 @@ class AutoResponder(commands.Cog): await self.transcode_hevc_to_h264(reaction.message, additional=extra) if reaction.emoji.name == "\U0001f310": if reaction.message.id not in self.lmgtfy_cache: - url = "https://lmgtfy2.com/?q=" + quote_plus(reaction.message.content) + url = "https://lmddgtfy.net/?q=" + quote_plus(reaction.message.content) m = await reaction.message.reply(f"[Here's the answer to your question]({url})") await m.edit(suppress=True) self.lmgtfy_cache.append(reaction.message.id)