Merge pull request #188 from richinseattle/patch-1

Pass username as argument to door programs
This commit is contained in:
Bryan Ashby 2018-05-02 20:42:52 -06:00 committed by GitHub
commit 0152fa676c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -109,6 +109,7 @@ Door.prototype.run = function() {
node : self.exeInfo.node.toString(), node : self.exeInfo.node.toString(),
srvPort : sockServer ? sockServer.address().port.toString() : '-1', srvPort : sockServer ? sockServer.address().port.toString() : '-1',
userId : self.client.user.userId.toString(), userId : self.client.user.userId.toString(),
username : self.client.user.username,
}); });
} }