missing semicolon

This commit is contained in:
Loïc Bersier 2019-05-11 19:09:45 +02:00
parent 3ec0ab0afc
commit 92f4b969b6

View file

@ -58,7 +58,7 @@ class taglistCommand extends Command {
.setFooter(`You have ${count} tags on this server`);
message.channel.send(tagEmbed).catch(() => {
return message.channel.send('There is too much tag to be shown in an embed, sending file', {files: [`./tag/${message.guild.id}.json`]})
return message.channel.send('There is too much tag to be shown in an embed, sending file', {files: [`./tag/${message.guild.id}.json`]});
});
});