diff --git a/src/structures/Webhook.js b/src/structures/Webhook.js index 0bffaa110..7accdec6e 100644 --- a/src/structures/Webhook.js +++ b/src/structures/Webhook.js @@ -90,7 +90,7 @@ class Webhook { * The source guild of the webhook * @type {?(Guild|APIGuild)} */ - this.sourceGuild = this.client.guilds?._add(data.source_guild, false) ?? data.source_guild; + this.sourceGuild = this.client.guilds?.resolve(data.source_guild.id) ?? data.source_guild; } else { this.sourceGuild ??= null; }