diff --git a/src/controllers/groups.js b/src/controllers/groups.js index 289e950bdd..1f40fb7684 100644 --- a/src/controllers/groups.js +++ b/src/controllers/groups.js @@ -271,7 +271,12 @@ api.flagChatMessage = function(req, res, next){ // Log total number of flags (publicly viewable) if(!message.flagCount) message.flagCount = 0; - message.flagCount++ + if(user.contributor.admin){ + // Arbitraty amount, higher than 2 + message.flagCount = 5; + } else { + message.flagCount++ + } group.markModified('chat'); group.save(function(err,_saved){