Skip to content

Commit

Permalink
Better use of URI API
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarcand committed Sep 6, 2013
1 parent d3f8d7f commit 6692152
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ public void onOpen(Session session, EndpointConfig endpointConfig) {
try {

request = new AtmosphereRequest.Builder()
.requestURI(session.getRequestURI().toString())
.requestURL(session.getRequestURI().toString())
.requestURI(session.getRequestURI().toASCIIString())
.requestURL(session.getRequestURI().toASCIIString())
.headers(headers)
.contextPath(framework.getServletContext().getContextPath())
.pathInfo(pathInfo.toString())
Expand Down

0 comments on commit 6692152

Please sign in to comment.