Make it so low threshold is included in karma calc

This commit is contained in:
Kim Gardner
2018-05-22 20:12:17 -04:00
parent 6667bbe01f
commit 8e24d4f5c6
+1 -1
View File
@@ -121,7 +121,7 @@ class KarmaService {
if (trust && trust[name]) {
if (trust[name].karma > THRESHOLDS[name].RELIABLE) {
return true;
} else if (trust[name].karma < THRESHOLDS[name].UNRELIABLE) {
} else if (trust[name].karma <= THRESHOLDS[name].UNRELIABLE) {
return false;
}
} else if (THRESHOLDS[name].RELIABLE < 0) {