used await instead of .then().catch() (KhaaZ)

merge-requests/12/head
DedShot™#9195 2020-05-09 22:01:51 -04:00 committed by Bsian
parent aafed2980c
commit 89f780ddfb
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 26 additions and 26 deletions

View File

@ -17,35 +17,35 @@ export default class DJS extends Command {
try {
if (!args[0]) return this.client.commands.get('help').run(message, [this.name]);
return axios.get(`https://djsdocs.sorta.moe/v2/embed?src=master&q=${args[0]}`)
.then((res) => {
const { data } = res;
if (!data) return this.error(message.channel, 'Could not find information. Try something else.');
let res;
try {
res = await axios.get(`https://djsdocs.sorta.moe/v2/embed?src=master&q=${args[0]}`);
} catch (err) {
this.error(message.channel, 'Please try again later, something unexpected happened.');
return this.client.util.handleError(err, message, this);
}
const { data } = res;
if (!data) return this.error(message.channel, 'Could not find information. Try something else.');
const name: string = data.author?.name || '';
const icon_url: string = data.author?.icon_url || '';
const author_url: string = data.author?.url || '';
const description: string = data.description || 'None';
const title: string = data.title || '';
const name: string = data.author?.name || '';
const icon_url: string = data.author?.icon_url || '';
const author_url: string = data.author?.url || '';
const description: string = data.description || 'None';
const title: string = data.title || '';
const embed = new RichEmbed();
embed.setAuthor(name, icon_url, author_url);
embed.setColor(0x2296f3);
embed.setTitle(title);
embed.setDescription(description);
if (data.fields !== undefined && data.fields.length > 0) {
data.fields.forEach((field) => {
embed.addField(field.name, field.value);
});
}
embed.setFooter(this.client.user.username, this.client.user.avatarURL);
embed.setTimestamp();
return message.channel.createMessage({ embed });
})
.catch((err) => {
this.error(message.channel, 'Please try again later, something unexpected happened.');
this.client.util.handleError(err, message, this);
const embed = new RichEmbed();
embed.setAuthor(name, icon_url, author_url);
embed.setColor(0x2296f3);
embed.setTitle(title);
embed.setDescription(description);
if (data.fields !== undefined && data.fields.length > 0) {
data.fields.forEach((field) => {
embed.addField(field.name, field.value);
});
}
embed.setFooter(this.client.user.username, this.client.user.avatarURL);
embed.setTimestamp();
return message.channel.createMessage({ embed });
} catch (err) {
return this.client.util.handleError(err, message, this);
}