From fdc4268f224601c13f091cc54e798d5ee92d18a5 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 4 Apr 2024 17:18:29 -0400 Subject: [PATCH] Fix --- commands/events/florida-man.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/events/florida-man.js b/commands/events/florida-man.js index fc316530..7d33cd3e 100644 --- a/commands/events/florida-man.js +++ b/commands/events/florida-man.js @@ -44,7 +44,7 @@ module.exports = class FloridaManCommand extends Command { return msg.say(stripIndents` **${article.title}** ${article.firstLine} - [Read more...](https://floridamanbirthday.org/${months[month - 1]}-${day}) + [Read more...]() `, { files: [article.image] }); } @@ -55,7 +55,7 @@ module.exports = class FloridaManCommand extends Command { return { title: decodeHTML($('p').first().children().first().text()), firstLine: decodeHTML($('p').eq(1).children().first().text()), - image: `https:${$('img').eq(2).attr('data-lazy-src')}` + image: `https:${$('img').eq(1).attr('data-lazy-src')}` }; } catch (err) { if (err.status === 404) return null;