From 839d9402054000612e8f9be2cde6fcfb63bd34d7 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 11 Oct 2020 13:46:02 -0400 Subject: [PATCH] fixes --- src/commands/score.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/score.ts b/src/commands/score.ts index 394554b..4c87fcd 100644 --- a/src/commands/score.ts +++ b/src/commands/score.ts @@ -161,7 +161,7 @@ export default class Score extends Command { score.inquiries.forEach((inq) => { const testDate = (new Date(new Date(inq.date).setHours(2190))); // eslint-disable-next-line no-useless-escape - if (testDate > new Date()) desc += `**Department/Service:** ${inq.name}\n**Reason:** ${inq.reason}\n**Date:** ${inq.date.toLocaleString('en-us')} ET\n\n`.replace(/\*/g, '\*'); + if (testDate > new Date()) desc += `**Department/Service:** ${inq.name.replace(/\*/gmi, '')}\n**Reason:** ${inq.reason}\n**Date:** ${inq.date.toLocaleString('en-us')} ET\n\n`; }); embed.setDescription(desc); }