fixes
parent
ba00e7088f
commit
839d940205
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue