mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 22:11:53 +00:00
fix(Emoji): reject explicit error when MANAGE_EMOJI permissions are missing (#3063)
This commit is contained in:
parent
49e8bd9edd
commit
45a17e7ebd
1 changed files with 5 additions and 0 deletions
|
|
@ -162,6 +162,11 @@ class Emoji {
|
|||
*/
|
||||
fetchAuthor() {
|
||||
if (this.managed) return Promise.reject(new Error('Emoji is managed and has no Author.'));
|
||||
if (!this.guild.me.permissions.has(Permissions.FLAGS.MANAGE_EMOJIS)) {
|
||||
return Promise.reject(
|
||||
new Error(`Client must have Manage Emoji permission in guild ${this.guild} to see emoji authors.`)
|
||||
);
|
||||
}
|
||||
return this.client.rest.makeRequest('get', Constants.Endpoints.Guild(this.guild).Emoji(this.id), true)
|
||||
.then(emoji => this.client.dataManager.newUser(emoji.user));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue