Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 529545 - TypeError: Cannot read property 'message' of undefined
  • Loading branch information
grant-g committed Jan 8, 2018
1 parent 2e2e948 commit d483532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/orionode/lib/git/clone.js
Expand Up @@ -568,7 +568,7 @@ function putClone(req, res) {
writeResponse(200, res);
})
.catch(function(err){
writeError(403, res, err.message);
writeError(403, res, err);
})
.done(function() {
freeRepo(theRepo);
Expand Down

0 comments on commit d483532

Please sign in to comment.