Skip to content

Commit

Permalink
Respect operator precedence
Browse files Browse the repository at this point in the history
  • Loading branch information
stouset committed Nov 10, 2012
1 parent 7537e25 commit cd4dee7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ Manager.prototype.authorize = function (data, fn) {
var self = this;

this.get('authorization').call(this, data, function (err, authorized) {
self.log.debug('client ' + authorized ? 'authorized' : 'unauthorized');
self.log.debug('client ' + (authorized ? 'authorized' : 'unauthorized'));
fn(err, authorized);
});
} else {
Expand Down

0 comments on commit cd4dee7

Please sign in to comment.