-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Closed
Description
File: lib/manager.js
Line 903: self.log.debug('client ' + authorized ? 'authorized' : 'unauthorized');
Regardless of authorization status this is producing the message: authorized
To fix it you can change it to:
self.log.debug('client ' + (authorized ? 'authorized' : 'unauthorized'));
which seems to handle the type and concatenation properly.
Metadata
Metadata
Assignees
Labels
No labels