Skip to content

Commit

Permalink
mesh-192: handled null domain guid
Browse files Browse the repository at this point in the history
  • Loading branch information
PRATHAM2002-DS committed Sep 10, 2024
1 parent 9437281 commit 581eb2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5014,7 +5014,7 @@ public List<AtlasVertex> unlinkMeshEntityFromAssets(String meshEntityId, Set<Str
if (meshEntityId.isEmpty() || existingValues.contains(meshEntityId)) {
isAuthorizedToLink(ev);

if (meshEntityId.isEmpty() || meshEntityId == null) {
if (StringUtils.isEmpty(meshEntityId)) {
existingValues.clear();
ev.removeProperty(DOMAIN_GUIDS_ATTR);
} else {
Expand Down

0 comments on commit 581eb2f

Please sign in to comment.