From 7fceec6217f5cfeba9f1650608196552b3355945 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 26 Jan 2020 20:55:43 -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 76d0a7f5..6215ee25 100644 --- a/commands/search/lyrics.js +++ b/commands/search/lyrics.js @@ -4,7 +4,7 @@ const { shorten } = require('../../util/Util'); // eslint-disable-next-line max-len const top = ''; const bottom = ''; -const lyricRegex = new RegExp(`${top}(.+)${bottom}`); +const lyricRegex = new RegExp(`${top}(.+)${bottom}`, 'si'); module.exports = class LyricsCommand extends Command { constructor(client) {