Fix wrong config description for #459

This commit is contained in:
Gabriele C
2016-11-13 13:35:19 +01:00
parent ed29ae2318
commit cf04ec6082
3 changed files with 11 additions and 7 deletions
@@ -259,7 +259,7 @@ public class AsynchronousLogin implements AsynchronousProcess {
int threshold = service.getProperty(RestrictionSettings.OTHER_ACCOUNTS_CMD_THRESHOLD);
String command = service.getProperty(RestrictionSettings.OTHER_ACCOUNTS_CMD);
if(threshold <= 1 || command.isEmpty()) {
if(threshold < 2 || command.isEmpty()) {
return;
}