Skip to content

Commit

Permalink
Merge pull request #414 from cybem/master
Browse files Browse the repository at this point in the history
Fix broken encoding of the mobileorg.org file in the Ubuntu One synchron...
  • Loading branch information
matburt committed Sep 20, 2013
2 parents d8a0c94 + 5413c8d commit 054ca0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public void putRemoteFile(String filename, String contents) throws IOException {
url = uri.toURL();

request = new HttpPut(url.toString());
request.setEntity(new StringEntity(contents));
request.setEntity(new StringEntity(contents, "UTF-8"));
httpClient = new DefaultHttpClient();

signRequest(request);
Expand Down

0 comments on commit 054ca0b

Please sign in to comment.