Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-lindstrom committed Oct 1, 2023
1 parent 831620d commit e16e4ae
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;

Expand Down Expand Up @@ -95,7 +96,7 @@ private Document parseContents(final Text node, final Element domElement) throws
//
try {
final byte[] bytes = Base64Support.decode(textContent);
final String addressElements = new String(bytes);
final String addressElements = new String(bytes, StandardCharsets.UTF_8);

// Then build a fake XML document holding the contents in element form.
//
Expand Down

0 comments on commit e16e4ae

Please sign in to comment.