mirror of
https://github.com/anope/anope.git
synced 2026-06-29 10:16:39 +02:00
Update for the 1205 FJOIN syntax.
This commit is contained in:
@@ -1465,6 +1465,14 @@ struct IRCDMessageFJoin : IRCDMessage
|
||||
if (!buf.empty())
|
||||
buf.erase(buf.begin());
|
||||
|
||||
/* Erase the :membid */
|
||||
if (!buf.empty())
|
||||
{
|
||||
Anope::string::size_type membid = buf.find(':');
|
||||
if (membid != Anope::string::npos)
|
||||
buf.erase(membid, Anope::string::npos);
|
||||
}
|
||||
|
||||
sju.second = User::Find(buf);
|
||||
if (!sju.second)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user