fix crash
This commit is contained in:
parent
132a6a0a7c
commit
f636aa907f
1 changed files with 8 additions and 14 deletions
|
@ -40,16 +40,11 @@ class fakebotCommand extends Command {
|
|||
if (err) {
|
||||
console.log(err);
|
||||
}
|
||||
sendWebhook(this.client);
|
||||
});
|
||||
});
|
||||
} else {
|
||||
sendWebhook(this.client);
|
||||
}
|
||||
|
||||
function sendWebhook(client) {
|
||||
let webhook = require(`../../webhook/${message.guild.id}.json`);
|
||||
client.fetchWebhook(webhook.id, webhook.token)
|
||||
this.client.fetchWebhook(webhook.id, webhook.token)
|
||||
.then(webhook => {
|
||||
webhook.edit({
|
||||
name: args.member.username,
|
||||
|
@ -58,6 +53,5 @@ class fakebotCommand extends Command {
|
|||
return webhook.send(args.message);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
module.exports = fakebotCommand;
|
Loading…
Reference in a new issue