log error

This commit is contained in:
loicbersier 2020-02-21 21:15:11 +01:00
parent 48acabf3a6
commit cbd7ad85e7
2 changed files with 2 additions and 0 deletions

View file

@ -78,6 +78,7 @@ class memeCommand extends Command {
img.format(function(err, format) {
if (err) {
console.error(err);
return message.channel.send('An error has occured, is it an image?');
}
let output = `${os.tmpdir()}/meme${message.id}.${format.toLocaleLowerCase()}`;

View file

@ -94,6 +94,7 @@ class posterCommand extends Command {
img.format(function(err, format) {
if (err) {
console.error(err);
return message.channel.send('An error has occured, is it an image?');
}
let output = `${os.tmpdir()}/poster${message.id}.${format.toLocaleLowerCase()}`;