From f2d7c58ac973f88c9cf4b9e399df5ccaa25ae5e8 Mon Sep 17 00:00:00 2001 From: lucmsilva651 Date: Sat, 7 Sep 2024 13:12:58 -0300 Subject: [PATCH] Fixed variable name --- commands/lastfm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/lastfm.js b/commands/lastfm.js index f670992..80bedc6 100644 --- a/commands/lastfm.js +++ b/commands/lastfm.js @@ -34,8 +34,8 @@ module.exports = (bot) => { const track = response.data.recenttracks.track[0]; if (!track) { - const noResponse = Strings.lastFmNoResponse.replace('{lastfmUser}', lastfmUser); - return ctx.reply(noResponse, { + const noRecent = Strings.lastFmNoRecent.replace('{lastfmUser}', lastfmUser); + return ctx.reply(noRecent, { parse_mode: "Markdown", reply_to_message_id: ctx.message.message_id });