ChannelMembership

- Fixed implementation of `list(string channelName)` whereby the channel was never being set
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-18 12:47:39 +02:00
parent 56dc43253e
commit 458c413f01
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ public class ChannelMembership : Command
public ChannelMembership list(string channelName)
{
this.channel = channel;
this.channel = channelName;
return mode(MembershipMode.LIST);
}