Fixed variable name

This commit is contained in:
Lucas Gabriel 2024-09-07 13:12:58 -03:00
parent b1304b9956
commit f2d7c58ac9
No known key found for this signature in database
GPG Key ID: D9B075FC6DC93985

View File

@ -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
});