This commit is contained in:
Isaac 2021-05-20 15:31:44 +01:00
parent 4651650fdf
commit f2a706aa95
No known key found for this signature in database
GPG Key ID: F6812DBC6719B4E3

View File

@ -106,6 +106,7 @@ module.exports = class TagCommand extends Command {
args.ticket.topic = t_row.topic ? this.client.cryptr.decrypt(t_row.topic) : null; args.ticket.topic = t_row.topic ? this.client.cryptr.decrypt(t_row.topic) : null;
} }
// note that this regex is slightly different to the other
const text = tag.replace(/(?<!\\){{1,2}\s?:?([A-Za-z0-9._]+)\s?(?<!\\)}{1,2}/gi, ($, $1) => this.client.i18n.resolve(args, $1)); const text = tag.replace(/(?<!\\){{1,2}\s?:?([A-Za-z0-9._]+)\s?(?<!\\)}{1,2}/gi, ($, $1) => this.client.i18n.resolve(args, $1));
return await message.channel.send( return await message.channel.send(
new MessageEmbed() new MessageEmbed()