Fix wrong logic #459

This commit is contained in:
Gabriele C 2016-11-13 13:36:50 +01:00
parent cf04ec6082
commit 3362cf7b95

View File

@ -263,7 +263,7 @@ public class AsynchronousLogin implements AsynchronousProcess {
return;
}
if (auths.size() >= threshold) {
if (auths.size() < threshold) {
return;
}