mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-19 04:14:40 +00:00
fix(groups): pass missing next into Like function
This commit is contained in:
parent
b42dacf203
commit
afee0968f8
1 changed files with 1 additions and 1 deletions
|
|
@ -249,7 +249,7 @@ api.deleteChatMessage = function(req, res){
|
|||
});
|
||||
}
|
||||
|
||||
api.likeChatMessage = function(req, res) {
|
||||
api.likeChatMessage = function(req, res, next) {
|
||||
var user = res.locals.user;
|
||||
var group = res.locals.group;
|
||||
var message = _.find(group.chat, {id: req.params.mid});
|
||||
|
|
|
|||
Loading…
Reference in a new issue