fix: Webhookupdated data naming

This commit is contained in:
Armano den Boef
2022-08-01 17:41:25 +02:00
committed by GitHub
parent 010e8e828f
commit a663f61a86

View File

@@ -2848,7 +2848,7 @@ namespace Discord.WebSocket
await _gatewayLogger.DebugAsync("Received Dispatch (WEBHOOKS_UPDATE)").ConfigureAwait(false);
var guild = State.GetGuild(data.GuildId);
var channel = State.GetChannel(data.ChanelId);
var channel = State.GetChannel(data.ChannelId);
await TimedInvokeAsync(_webhooksUpdated, nameof(WebhooksUpdated), guild, channel);
}