From 486fb43b73eab278d680611dbc107368fc2b8b3e Mon Sep 17 00:00:00 2001 From: filipnyquist Date: Tue, 17 Jul 2018 11:45:25 +0200 Subject: [PATCH] Update lbrylink.js --- bot/modules/lbrylink.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/modules/lbrylink.js b/bot/modules/lbrylink.js index 7a7cf92..cadac2f 100644 --- a/bot/modules/lbrylink.js +++ b/bot/modules/lbrylink.js @@ -34,7 +34,7 @@ exports.lbrylink = async function(bot, msg, suffix) { .setDescription("I see you tried to post a LBRY URL, here's a friendly hyperlink to share and for others to access your content with a single click:") .setColor(7976557); cleanURLs.forEach(url => linkEmbed.addField("Open with LBRY:", url, true)); - return msg.embed(linkEmbed); + return msg.channel.send({embed: linkEmbed}); } catch (e) { console.log(e); msg.channel.send("Something went wrong when trying to run the lbrylinker, contact a moderator.");