fixed an if condition

This commit is contained in:
Michele Artini 2022-10-11 11:33:45 +02:00
parent c4c7179009
commit 7716f199ad
1 changed files with 1 additions and 1 deletions

View File

@ -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 {