remove error catch thing

This commit is contained in:
ry 2020-02-16 22:37:27 +01:00
parent 6de4923bfd
commit 654e2a23a6
1 changed files with 28 additions and 27 deletions

View File

@ -109,34 +109,35 @@ module.exports = {
cmd.command(ctx).then(async () => {
if (!ctx.config.type.beta) ctx.client.channels.find(c => c.id === vars.logs.usage).send(`${ctx.utils.format.bold(ctx.author.tag)} (${ctx.utils.format.code(ctx.author.id)}) used ${ctx.utils.format.code(cmd.name)} in ${ctx.utils.format.bold(ctx.guild.name)} (${ctx.utils.format.code(ctx.guild.id)}) `).catch(e => console.log(e))
await ctx.db.backend.add(`usage.${cmd.name}`, 1)
}).catch((err) => {
if (!cmd.name === 'e926' || !cmd.name === 'e621') {
trello
.addCard(
cmd.name + ' | ' + err.message,
`Full Error:
${err}
})
/* .catch((err) => {
if (!cmd.name === 'e926' || !cmd.name === 'e621') {
trello
.addCard(
cmd.name + ' | ' + err.message,
`Full Error:
${err}
Content: ${ctx.msg.content}
Author: ${msg.author.tag} (${msg.author.id})
Server: ${msg.guild.name} (${msg.guild.id})`,
config.trello.boards.errors
)
.then((r) => {
trello
.addLabelToCard(r.id, config.trello.labels.errors)
.catch((error) => console.log(error));
})
.catch((err) => console.log(err));
}
//console.warn(err.message);
let ErrorEmb = new MessageEmbed();
ErrorEmb.setTitle(`${cmd.name} encountered an Error`)
.setDescription(`\`${err.message}\`\n\n\`${err}\``)
.setColor('RED');
return ctx.send(ErrorEmb);
});
Content: ${ctx.msg.content}
Author: ${msg.author.tag} (${msg.author.id})
Server: ${msg.guild.name} (${msg.guild.id})`,
config.trello.boards.errors
)
.then((r) => {
trello
.addLabelToCard(r.id, config.trello.labels.errors)
.catch((error) => console.log(error));
})
.catch((err) => console.log(err));
}
//console.warn(err.message);
let ErrorEmb = new MessageEmbed();
ErrorEmb.setTitle(`${cmd.name} encountered an Error`)
.setDescription(`\`${err.message}\`\n\n\`${err}\``)
.setColor('RED');
return ctx.send(ErrorEmb);
}); */
}
}
};