Browse Source

fix: Webhookupdated data naming

tags/3.8.0
Armano den Boef GitHub 2 years ago
parent
commit
a663f61a86
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.WebSocket/DiscordSocketClient.cs

+ 1
- 1
src/Discord.Net.WebSocket/DiscordSocketClient.cs 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);
}


Loading…
Cancel
Save