v1.18.x
Barış Soner Uşaklı 6 years ago
parent 6a377568d2
commit d996ea27be

@ -168,7 +168,7 @@ module.exports = function (User) {
User.checkMinReputation = function (callerUid, uid, setting, callback) { User.checkMinReputation = function (callerUid, uid, setting, callback) {
var isSelf = parseInt(callerUid, 10) === parseInt(uid, 10); var isSelf = parseInt(callerUid, 10) === parseInt(uid, 10);
if (!isSelf) { if (!isSelf || parseInt(meta.config['reputation:disabled'], 10) === 1) {
return setImmediate(callback); return setImmediate(callback);
} }
async.waterfall([ async.waterfall([

Loading…
Cancel
Save