From d996ea27bec721011a86c6379050ff074158173a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Sat, 15 Sep 2018 17:59:57 -0400 Subject: [PATCH] closes #6763 --- src/user/profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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([