Skip to content

Commit

Permalink
Add missing call to postProcessXml in other Metadata constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
mauromol committed Apr 7, 2021
1 parent 94942fb commit 9f2132f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public Metadata(Saml2Settings settings, Calendar validUntilTime, Integer cacheDu
this.cacheDuration = cacheDuration;

StrSubstitutor substitutor = generateSubstitutor(settings);
String unsignedMetadataString = substitutor.replace(getMetadataTemplate());
String unsignedMetadataString = postProcessXml(substitutor.replace(getMetadataTemplate()));

LOGGER.debug("metadata --> " + unsignedMetadataString);
metadataString = unsignedMetadataString;
Expand Down

0 comments on commit 9f2132f

Please sign in to comment.