Skip to content

Commit

Permalink
Merge pull request #76 from eordano/fixCrash
Browse files Browse the repository at this point in the history
Fixes crash when user is not properly identified
  • Loading branch information
michelle committed May 26, 2015
2 parents 1e89328 + 66db80c commit 31d7acd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/server.js
Expand Up @@ -199,6 +199,7 @@ app._initializeHTTP = function() {
if (!self._clients[key] || !(client = self._clients[key][id])) {
if (req.params.retry) {
res.sendStatus(401);
return;
} else {
// Retry this request
req.params.retry = true;
Expand Down

0 comments on commit 31d7acd

Please sign in to comment.