diff --git a/src/Discord.Net/DiscordClient.API.cs b/src/Discord.Net/DiscordClient.API.cs index 52702fc17..4c8f33e27 100644 --- a/src/Discord.Net/DiscordClient.API.cs +++ b/src/Discord.Net/DiscordClient.API.cs @@ -106,8 +106,8 @@ namespace Discord } /// Edits the provided channel, changing only non-null attributes. - public Task EditChannel(Channel channel) - => EditChannel(channel?.Id); + public Task EditChannel(Channel channel, string name = null, string topic = null) + => EditChannel(channel?.Id, name: name, topic: topic); /// Edits the provided channel, changing only non-null attributes. public Task EditChannel(string channelId, string name = null, string topic = null) {