From 3820b12e164a90cdbfc0245e89cdc780632e04d4 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 13 Mar 2021 15:23:12 -0500 Subject: [PATCH] Don't embed google urls --- commands/search/google.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/google.js b/commands/search/google.js index 2149da94..9b3868fb 100644 --- a/commands/search/google.js +++ b/commands/search/google.js @@ -46,7 +46,7 @@ module.exports = class GoogleCommand extends Command { href = `http://lmgtfy.com/?iie=1&q=${encodeURIComponent(query)}`; } if (!href) return msg.say('Could not find any results.'); - return msg.say(href); + return msg.say(`<${href}>`); } async search(query, nsfw) {