Skip to content

Commit

Permalink
Merge pull request #20 from GluuFederation/issues_2439
Browse files Browse the repository at this point in the history
fix(oxtrust-server): failed to remove memberof from user with postgresql
  • Loading branch information
yurem authored Nov 15, 2024
2 parents 813cf1c + ce418f4 commit ef6b8a9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -355,12 +355,12 @@ public List<GluuCustomAttribute> detectRemovedAttributes() {
Set<String> origCustomAttributesSet = new HashSet<String>();

for (GluuCustomAttribute origCustomAttribute : origCustomAttributes) {
String attributeName = StringHelper.toLowerCase(origCustomAttribute.getName());
String attributeName = origCustomAttribute.getName();
origCustomAttributesSet.add(attributeName);
}

for (GluuCustomAttribute currentCustomAttribute : customAttributes) {
String attributeName = StringHelper.toLowerCase(currentCustomAttribute.getName());
String attributeName = currentCustomAttribute.getName();
origCustomAttributesSet.remove(attributeName);
}

Expand Down

0 comments on commit ef6b8a9

Please sign in to comment.