chore(Deps): upgrade deps (#4701)

This commit is contained in:
Noel
2020-08-14 21:46:23 +02:00
committed by GitHub
parent 178439ef8c
commit dea48d64a5
12 changed files with 11320 additions and 51 deletions

View File

@@ -74,10 +74,7 @@ class GuildEmoji extends BaseGuildEmoji {
throw new Error('MISSING_MANAGE_EMOJIS_PERMISSION', this.guild);
}
}
const data = await this.client.api
.guilds(this.guild.id)
.emojis(this.id)
.get();
const data = await this.client.api.guilds(this.guild.id).emojis(this.id).get();
this._patch(data);
return this.author;
}