Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private InputStreamReader executeGet(String uri, char[] token) throws GithubAuth
request.releaseConnection();
throw new GithubAuthenticationException("Authentication failed.");
}
return new InputStreamReader(response.getEntity().getContent());
return new InputStreamReader(response.getEntity().getContent(), "UTF-8");
} catch (IOException e) {
request.releaseConnection();
throw new GithubAuthenticationException(e);
Expand Down