Skip to content

Commit

Permalink
Update Table Error Message fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
nawazdhandala committed Feb 12, 2017
1 parent a152846 commit 37a92d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/app/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ module.exports = function() {
},function(err){
console.log("Error : Cannot create an app.");
console.log(err);
res.status(500).send("Error");
res.status(500).send(err);
})

}, function (err){
console.log("Error : Cannot create an app.");
console.log(err);
res.status(500).send("Error");
res.status(500).send(err);
});
} else {
console.log("Unauthorized: Invalid Secure Key ");
Expand Down

0 comments on commit 37a92d5

Please sign in to comment.