Fixed /who <channel> result being incorrectly formatted.
This commit is contained in:
parent
ea83c8cca0
commit
08f9a2c5a1
1 changed files with 1 additions and 1 deletions
|
@ -474,7 +474,7 @@ namespace SharpChat {
|
||||||
if(whoChanSB.Length > 2)
|
if(whoChanSB.Length > 2)
|
||||||
whoChanSB.Length -= 2;
|
whoChanSB.Length -= 2;
|
||||||
|
|
||||||
user.Send(new LegacyCommandResponse(LCR.USERS_LISTING_CHANNEL, false, whoChanSB));
|
user.Send(new LegacyCommandResponse(LCR.USERS_LISTING_CHANNEL, false, whoChan.Name, whoChanSB));
|
||||||
} else {
|
} else {
|
||||||
foreach(ChatUser whoUser in Context.Users.All()) {
|
foreach(ChatUser whoUser in Context.Users.All()) {
|
||||||
whoChanSB.Append(@"<a href=""javascript:void(0);"" onclick=""UI.InsertChatText(this.innerHTML);""");
|
whoChanSB.Append(@"<a href=""javascript:void(0);"" onclick=""UI.InsertChatText(this.innerHTML);""");
|
||||||
|
|
Loading…
Reference in a new issue