1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 03:56:37 +02:00

ngircd protocol module: Fix NJOIN, actually join users to the channel

Bug introduced by commit d33a0f75: "Pretty large coding style cleanup,
in source doc cleanup, and allow protocol mods to depend on each other":
Since then, the NJOIN command has been "ignored", no users were added
to channels at all while linking ...
This commit is contained in:
Alexander Barton
2012-12-27 22:15:33 +01:00
parent c88a3fffd5
commit fdc62daa8b
+1
View File
@@ -489,6 +489,7 @@ struct IRCDMessageNJoin : IRCDMessage
Log(LOG_DEBUG) << "NJOIN for nonexistant user " << buf << " on " << params[0];
continue;
}
users.push_back(sju);
}
Message::Join::SJoin(source, params[0], 0, "", users);