Skip to content
Permalink
Browse files Browse the repository at this point in the history
RF-13250: applying patch
  • Loading branch information
pslegr committed Feb 24, 2014
1 parent fdb79dd commit 8131f15
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -78,8 +78,6 @@ public void doFilter(ServletRequest request, ServletResponse response, FilterCha
HttpServletResponse httpResp = (HttpServletResponse) response;

if ("GET".equals(httpReq.getMethod())) {
Meteor meteor = Meteor.build(httpReq, SCOPE.REQUEST, Collections.<BroadcastFilter>emptyList(), null);

String pushSessionId = httpReq.getParameter(PUSH_SESSION_ID_PARAM);

Session session = null;
Expand All @@ -100,6 +98,8 @@ public void doFilter(ServletRequest request, ServletResponse response, FilterCha

httpResp.setContentType("text/plain");

Meteor meteor = Meteor.build(httpReq, SCOPE.REQUEST, Collections.<BroadcastFilter>emptyList(), null);

try {
Request pushRequest = new RequestImpl(meteor, session);

Expand Down

0 comments on commit 8131f15

Please sign in to comment.