Skip to content

Commit

Permalink
Fixes #1978
Browse files Browse the repository at this point in the history
  • Loading branch information
elakito committed May 19, 2015
1 parent f6147ef commit 4944757
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ public HttpSession getSession(boolean create) {
return b.request.getSession(create);
} catch (java.lang.IllegalStateException ex) {
// Jetty
if (ex.getMessage() != null && ex.getMessage().equalsIgnoreCase("No Session Manager")) {
if (ex.getMessage() != null && ex.getMessage().equals("No SessionManager")) {
return null;
}
throw ex;
Expand Down

0 comments on commit 4944757

Please sign in to comment.