Skip to content
Snippets Groups Projects
Commit 9c14fbd0 authored by rswindell's avatar rswindell
Browse files

Fixed undefined field (no properties) error for XHDR command.

parent 62dd26a2
No related branches found
No related tags found
No related merge requests found
......@@ -394,6 +394,8 @@ while(client.socket.is_connected && !quit) {
field=hdr.ftn_reply;
break;
}
if(field==undefined)
field="";
writeln(format("%u %s",i,field.toString()));
}
......
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