Skip to content

Commit

Permalink
Remove lower-casing of ID Match attributes
Browse files Browse the repository at this point in the history
Although the names of attributes in DB may be lowercase, the API
names may safely contain both lower and uppercase letters.
  • Loading branch information
mederly committed Feb 24, 2022
1 parent f71c8fb commit bb5b770
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ private PersonRequest createPersonRequest(
String elementName = fromMidPointAttributeName(property.getElementName());
String elementRealValue = getStringValue(property);

generator.writeFieldName(elementName.toLowerCase());
generator.writeFieldName(elementName);
generator.writeString(elementRealValue);
}

Expand Down

0 comments on commit bb5b770

Please sign in to comment.