Skip to content
Snippets Groups Projects
Commit b82dbdc7 authored by cyan's avatar cyan
Browse files

Fix a bug involving a crash on KICK.

parent 414debb8
No related branches found
No related tags found
No related merge requests found
......@@ -308,7 +308,7 @@ function Server_Work() {
nickid = search_nickbuf(cmd[2]);
if (!nickid)
break;
if (!nickid.channels[chan.nam.toUpperCase()])
if (!nickid.channels[chanid.nam.toUpperCase()])
break;
if (cmd[3])
kick_reason = IRC_string(cmdline).slice(0,max_kicklen);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment