Skip to content

Commit eb7d50c

Browse files
meeDamianDaftMonk
authored andcommitted
fix(app:server:thing.controller): missing res param for handleError added
1 parent f00a4c2 commit eb7d50c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/templates/server/api/thing/thing.controller.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ exports.create = function(req, res) {
6262
exports.update = function(req, res) {
6363
if(req.body._id) { delete req.body._id; }
6464
Thing.findById(req.params.id, function (err, thing) {
65-
if (err) { return handleError(err); }
65+
if (err) { return handleError(res, err); }
6666
if(!thing) { return res.send(404); }
6767
var updated = _.merge(thing, req.body);
6868
updated.save(function (err) {
69-
if (err) { return handleError(err); }
69+
if (err) { return handleError(res, err); }
7070
return res.json(200, thing);
7171
});
7272
});

0 commit comments

Comments
 (0)