From 9cc7d89d596b58168d08520397707982bca060a7 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sun, 14 Sep 2025 19:54:47 -0400 Subject: [PATCH] REALLY fix lint :) --- commands/events/apod.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/events/apod.js b/commands/events/apod.js index 8a8c3d26..b02124a4 100644 --- a/commands/events/apod.js +++ b/commands/events/apod.js @@ -28,7 +28,7 @@ module.exports = class ApodCommand extends Command { const credit = body.copyright ? body.copyright.replaceAll('\n', '/') : 'Public Domain'; return msg.say(stripIndents` **${body.title}** - ${body.explanation}${body.media_type === 'image' ? '' :`\n${body.url}`} + ${body.explanation}${body.media_type === 'image' ? '' : `\n${body.url}`} _Image Credits: [${credit}](https://apod.nasa.gov/apod/astropix.html)_ `, { files: body.media_type === 'image' ? [body.url] : [] });