fixed an if condition
This commit is contained in:
parent
c4c7179009
commit
7716f199ad
|
@ -485,7 +485,7 @@ public class DatabaseUtils {
|
|||
|
||||
if (persistents.size() > 1) {
|
||||
throw new RuntimeException("Too many persintent organizations");
|
||||
} else if (persistents.size() > 1) {
|
||||
} else if (persistents.size() == 1) {
|
||||
backupOrg(persistents.get(0), user);
|
||||
return fixConflicts(persistents.get(0), views, user);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue