mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-12-23 08:13:09 +02:00
Fix bug with empty topics
This commit is contained in:
parent
4ebdd32512
commit
053fcdb4b8
@ -103,8 +103,9 @@ module.exports = class TagCommand extends Command {
|
||||
|
||||
if (requires_ticket) {
|
||||
args.ticket = t_row.toJSON();
|
||||
args.ticket.topic = this.client.cryptr.decrypt(args.ticket.topic);
|
||||
args.ticket.topic = t_row.topic ? this.client.cryptr.decrypt(t_row.topic) : null;
|
||||
}
|
||||
|
||||
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(
|
||||
new MessageEmbed()
|
||||
|
Loading…
Reference in New Issue
Block a user