(irc) Better param parsing

This commit is contained in:
Jaidyn Ann 2021-08-11 10:22:32 -05:00
parent 12215266d0
commit 6b8823d213

View File

@ -523,9 +523,9 @@ IrcProtocol::_LineParameters(BStringList words, BString line)
break;
// Last parameter is preceded by a colon
int32 index = line.RemoveChars(0, 1).FindFirst(":");
int32 index = line.RemoveChars(0, 1).FindFirst(" :");
if (index != B_ERROR)
params.Add(line.RemoveChars(0, index + 1));
params.Add(line.RemoveChars(0, index + 2));
return params;
}