if its not a link send message

This commit is contained in:
loicbersier 2018-10-11 12:56:20 +02:00
parent 1230b42d7c
commit b4fc4e6357

View file

@ -24,9 +24,12 @@ module.exports = class faceappCommand extends Command {
}
async run(message, { url, type }) {
if(url.includes("http") || url.includes("www")) {
let face = type.toLowerCase();
let { body } = await superagent.get(url)
let image = await faceapp.process(body, face)
message.channel.sendFile(image)
} else
message.say("You need to input a link")
}
};