forked from Supositware/Haha-Yes
Make file shorter
This commit is contained in:
parent
98f3c06771
commit
43a65a62e2
1 changed files with 6 additions and 11 deletions
|
@ -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 { 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]});
|
||||
} else {
|
||||
let face = type.toLowerCase();
|
||||
let { body } = await superagent.get(Attachment[0].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]});
|
||||
}
|
||||
}};
|
Loading…
Reference in a new issue