Fix yet another bug with node IDs

* Pick appropriate slot
* Log nodeId vs clientId/etc. for less confusion
This commit is contained in:
Bryan Ashby 2020-05-13 19:30:57 -06:00
parent 714f32f695
commit fd6bb47427
No known key found for this signature in database
GPG key ID: B49EB437951D2542
5 changed files with 22 additions and 21 deletions

View file

@ -96,7 +96,7 @@ function Client(/*input, output*/) {
Object.defineProperty(this, 'node', {
get : function() {
return self.session.id + 1;
return self.session.id;
}
});