Skip to content
Snippets Groups Projects
Commit 1dfd676e authored by rswindell's avatar rswindell
Browse files

Fix bug in previous commit (use of Object.keys) which caused the default

domain/zone-map configuration to be used - always.
parent 4d1d1696
No related branches found
No related tags found
No related merge requests found
......@@ -169,7 +169,7 @@ function FTNDomains()
}, this);
f.close();
}
if(!this.domainMap || !this.domainMap.keys) {
if(!this.domainMap || !Object.keys(this.domainMap).length) {
this.outboundMap = {
'fidonet':ecfg.outbound.replace(/[\\\/]$/, '')
};
......
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