Skip to content
Snippets Groups Projects
Commit 7ef410e0 authored by rswindell's avatar rswindell
Browse files

Attempt to fix:

Mar 17 14:15:56 trmb synchronet: srvc 0052 BINKP !JavaScript  /sbbs/exec/binkit
.js line 862: TypeError: this.command is undefined
parent 30f66c4c
No related branches found
No related tags found
No related merge requests found
......@@ -598,7 +598,6 @@ function callout(addr, scfg, semaphores, locks, bicfg)
// We won't add files until the auth finishes...
success = bp.connect(addr, bp.cb_data.binkitpw, callout_auth_cb, port, host);
callout_done(bp, semaphores);
}
......@@ -859,7 +858,7 @@ function inbound_auth_cb(pwd, bp)
});
if (addrs.length === 0) {
if (invalid) {
bp.sendCmd(this.command.M_ERR, "Password mismatch");
bp.sendCmd(bp.command.M_ERR, "Password mismatch");
}
else {
// If we have NONE of their nodes configured, we can send them files for ALL of them.
......
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