Add else to fix topic testing

This commit is contained in:
o5pxels 2020-12-20 23:03:44 -06:00
parent c194b74d23
commit 29b7665279

View File

@ -76,7 +76,7 @@ module.exports = {
.setDescription('Please limit your ticket topic to less than 256 characters. A short sentence will do.') .setDescription('Please limit your ticket topic to less than 256 characters. A short sentence will do.')
.setFooter(guild.name, guild.iconURL()) .setFooter(guild.name, guild.iconURL())
); );
} if (!/("|'|`)("|'|`)/.test(config.default_topic)) { } else if (!/("|'|`)("|'|`)/.test(config.default_topic)) {
topic = config.default_topic; topic = config.default_topic;
} }
else if (topic.length < 1) { else if (topic.length < 1) {