Skip to content
Snippets Groups Projects
Commit 8d5e3b7c authored by rswindell's avatar rswindell
Browse files

Don't reference server.interface_ip_address, if server is not defined

(e.g. running from jsexec).
parent df3a0564
No related branches found
No related tags found
No related merge requests found
......@@ -130,9 +130,12 @@ var host;
var port=119;
var username;
var password;
var interface_ip_address=server.interface_ip_address;
var interface_ip_address=0;
area = new Array();
if(this.server!=undefined)
interface_ip_address=server.interface_ip_address;
/******************************/
/* Read/Parse the Config File */
/******************************/
......
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