From 87ea33fadf518559babc114a74f648fad57f8cc5 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 26 Jan 2020 20:56:39 -0500 Subject: [PATCH] Fix --- commands/search/lyrics.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/lyrics.js b/commands/search/lyrics.js index 6215ee25..ac458953 100644 --- a/commands/search/lyrics.js +++ b/commands/search/lyrics.js @@ -53,7 +53,7 @@ module.exports = class LyricsCommand extends Command { const { text } = await request.get(`https://www.azlyrics.com/lyrics/${artist}/${song}.html`); const lyrics = text.match(lyricRegex)[1]; return lyrics - .replace(/
/g, '\n') + .replace(/
/g, '') .replace(/<\/?div>/g, '') .trim(); }