Skip to content

Commit

Permalink
Proper fix for #311
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarcand committed Apr 27, 2012
1 parent 4eac8cf commit 48a785f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ public HttpSession getSession(boolean create) {
if (create) {
return getSession();
}
return session != null && isNotNoOps() ? b.request.getSession(false) : session;
return session == null && isNotNoOps() ? b.request.getSession(false) : session;
}

/**
Expand Down

0 comments on commit 48a785f

Please sign in to comment.