removed sendfiles

This commit is contained in:
loicbersier 2018-10-13 01:12:20 +02:00
parent afca03d4b3
commit 98f3c06771

View file

@ -39,8 +39,8 @@ module.exports = class faceappCommand extends Command {
message.say('Cant recognize the face')
console.error(error)
})
message.channel.sendFile(image)
} else {
return message.channel.send({files: [image]});
} else {
let face = type.toLowerCase();
let { body } = await superagent.get(Attachment[0].url)
let image = await faceapp.process(body, face)
@ -48,6 +48,6 @@ module.exports = class faceappCommand extends Command {
message.say('Cant recognize the face')
console.error(error)
})
message.channel.sendFile(image)
return message.channel.send({files: [image]});
}
}};