Skip to content
Snippets Groups Projects
Commit 02183177 authored by Randy Sommerfeld's avatar Randy Sommerfeld
Browse files

Fix for 0 TS on server-to-server MODE

parent 1ca5be2d
No related branches found
No related tags found
No related merge requests found
......@@ -420,7 +420,7 @@ function Server_Work(cmdline) {
));
break;
case "MODE":
if (!p[1])
if (typeof p[1] === undefined)
break;
if (p[0][0] != "#") { /* Setting a user mode */
tmp = origin.setusermode(p[1]);
......
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