This commit is contained in:
Dragon Fire
2020-01-26 20:55:43 -05:00
parent c0e1897538
commit 7fceec6217
+1 -1
View File
@@ -4,7 +4,7 @@ const { shorten } = require('../../util/Util');
// eslint-disable-next-line max-len
const top = '<!-- Usage of azlyrics.com content by any third-party lyrics provider is prohibited by our licensing agreement. Sorry about that. -->';
const bottom = '<!-- MxM banner -->';
const lyricRegex = new RegExp(`${top}(.+)${bottom}`);
const lyricRegex = new RegExp(`${top}(.+)${bottom}`, 'si');
module.exports = class LyricsCommand extends Command {
constructor(client) {