From 43a65a62e23c1965e041aed798e799bd119e16c3 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Sat, 13 Oct 2018 01:17:07 +0200 Subject: [PATCH] Make file shorter --- commands/fun/face.js | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/commands/fun/face.js b/commands/fun/face.js index 0ef29f4..1a793f6 100644 --- a/commands/fun/face.js +++ b/commands/fun/face.js @@ -29,25 +29,20 @@ module.exports = class faceappCommand extends Command { async run(message, { url, type }) { let Attachment = (message.attachments).array(); + let origin = null; if(!Attachment[0] && !url) { return message.say("You need to send an image") } else if(url.includes("http") || url.includes("www")) { + origin = url; + } else + origin = Attachment[0].url + let face = type.toLowerCase(); - let { body } = await superagent.get(url) - let image = await faceapp.process(body, face) - .catch(error => { - message.say('Cant recognize the face') - console.error(error) - }) - return message.channel.send({files: [image]}); - } else { - let face = type.toLowerCase(); - let { body } = await superagent.get(Attachment[0].url) + let { body } = await superagent.get(origin) let image = await faceapp.process(body, face) .catch(error => { message.say('Cant recognize the face') console.error(error) }) return message.channel.send({files: [image]}); - } }}; \ No newline at end of file