From 75f87d0ce3706b811edaf2ee661ff63d93c67e55 Mon Sep 17 00:00:00 2001 From: Apokalypt Date: Tue, 20 Jul 2021 20:08:24 +0100 Subject: [PATCH] fix(Sticker): replace this.guildID by this.guildId in fetchUser --- src/structures/Sticker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Sticker.js b/src/structures/Sticker.js index b72bad8975eb..f72c7fc83627 100644 --- a/src/structures/Sticker.js +++ b/src/structures/Sticker.js @@ -156,7 +156,7 @@ class Sticker extends Base { */ async fetchUser() { if (this.partial) await this.fetch(); - if (!this.guildID) throw new Error('NOT_GUILD_STICKER'); + if (!this.guildId) throw new Error('NOT_GUILD_STICKER'); const data = await this.client.api.guilds(this.guildId).stickers(this.id).get(); this._patch(data);