Skip to content

Commit

Permalink
fix ci failure
Browse files Browse the repository at this point in the history
  • Loading branch information
AssahBismarkabah committed Jan 14, 2025
1 parent c290f98 commit 9ffa12c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ public boolean hasToBeUpdated(RealmImport realmImport) {
throw new InvalidImportException("The specified realm does not exist: " + realmImport.getRealm());
}
Map<String, String> customAttributes = existingRealm.getAttributes();
if (customAttributes == null) {
return true;
}

String readChecksum = customAttributes.get(getCustomAttributeKey(realmImport));
if (readChecksum == null) {
Expand Down

0 comments on commit 9ffa12c

Please sign in to comment.