Skip to content

Commit

Permalink
Update user list send formatting to something more common.
Browse files Browse the repository at this point in the history
  • Loading branch information
Subsentient committed Mar 18, 2016
1 parent 4610df0 commit 3f6bbdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.cpp
Expand Up @@ -244,7 +244,7 @@ static void Server::SendChannelNamesList(const class ChannelList *const Channel,

SendBegin:

std::string OutString = std::string(":" NEXUS_FAKEHOST " 353 ") + IRCConfig.Nick + " * " + Channel->GetChannelName() + " :";
std::string OutString = std::string(":" NEXUS_FAKEHOST " 353 ") + IRCConfig.Nick + " = " + Channel->GetChannelName() + " :";

for (Ticker = 1; Iter != UserListRef.end(); ++Iter, ++Ticker)
{
Expand Down

0 comments on commit 3f6bbdb

Please sign in to comment.