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

Update for the 1205 FJOIN syntax.

This commit is contained in:
Peter Powell
2019-06-04 15:44:41 +01:00
committed by P. Powell
parent d88d8e940e
commit 78bac905c2
+8
View File
@@ -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)
{