Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1554,6 +1554,12 @@ private void processMode(String target, String sourceNick, String sourceLogin, S
t++;
}

// treat last param as a middle param
// section 2.3.1 of RFC 1459
if (params[params.length - 1].startsWith(":")) {
params[params.length - 1] = params[params.length - 1].substring(1);
}

char pn = ' ';
int p = 1;

Expand Down