Skip to content

Commit

Permalink
Merge pull request #167 from rwth-acis/hotfix/umlaute
Browse files Browse the repository at this point in the history
added fix for umlaute
  • Loading branch information
Aran30 authored Jan 13, 2023
2 parents 7fc63ff + 521bef7 commit 1f117df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public ClientResponse sendRequest(String method, String uri, String content, Str

// Send request
DataOutputStream wr = new DataOutputStream(connection.getOutputStream());
wr.writeBytes(content);
wr.write(content.getBytes("UTF-8"));
wr.close();
}

Expand Down

0 comments on commit 1f117df

Please sign in to comment.