mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-14 02:23:31 +01:00
fix(Emoji): reject explicit error when MANAGE_EMOJI permissions are missing (#3063)
This commit is contained in:
@@ -162,6 +162,11 @@ class Emoji {
|
|||||||
*/
|
*/
|
||||||
fetchAuthor() {
|
fetchAuthor() {
|
||||||
if (this.managed) return Promise.reject(new Error('Emoji is managed and has no Author.'));
|
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)
|
return this.client.rest.makeRequest('get', Constants.Endpoints.Guild(this.guild).Emoji(this.id), true)
|
||||||
.then(emoji => this.client.dataManager.newUser(emoji.user));
|
.then(emoji => this.client.dataManager.newUser(emoji.user));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user