diff --git a/src/user/profile.js b/src/user/profile.js index 90bdfc7243..6f2d3252b5 100644 --- a/src/user/profile.js +++ b/src/user/profile.js @@ -168,7 +168,7 @@ module.exports = function (User) { User.checkMinReputation = function (callerUid, uid, setting, callback) { var isSelf = parseInt(callerUid, 10) === parseInt(uid, 10); - if (!isSelf) { + if (!isSelf || parseInt(meta.config['reputation:disabled'], 10) === 1) { return setImmediate(callback); } async.waterfall([