Skip to content

Commit

Permalink
fix(oxtrust-server): failed to remove memberof from user with PostgreSQL
Browse files Browse the repository at this point in the history
Signed-off-by: shekhar16 <shekharlaad1609@gmail.com>
  • Loading branch information
shekhar16 committed Oct 14, 2024
1 parent a7e216e commit d9c5a4f
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 d9c5a4f

Please sign in to comment.