From 15e29b3027b35d43ec959d4c9bdd12e849e78905 Mon Sep 17 00:00:00 2001 From: Macky Fitz Date: Thu, 7 Oct 2021 09:15:40 +0000 Subject: [PATCH] Actual quotations not garbled text! --- core/commands/music/music.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/commands/music/music.js b/core/commands/music/music.js index 7ba08c9..6787ee5 100644 --- a/core/commands/music/music.js +++ b/core/commands/music/music.js @@ -255,7 +255,7 @@ module.exports = { }, { name: 'Song Information', - value: (song.title) ? `${song.title.replace("''",/\'/g)}` : 'No song loaded.', + value: (song.title) ? `${song.title.replace("''","'")}` : 'No song loaded.', } ]; return musicPlayerEmbed;