Skip to content

Commit

Permalink
BSR
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Dec 14, 2018
1 parent 2c346b3 commit 8aa7efe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ protected WebSSOProfileOptions getProfileOptions(SAMLMessageContext context, Aut
if (inboundMessageTransport instanceof HttpServletRequestAdapter) {
HttpServletRequestAdapter messageTransport = (HttpServletRequestAdapter) inboundMessageTransport;
String forceAuthn = messageTransport.getParameterValue("force-authn");
if (forceAuthn != null && "true".equals(forceAuthn)) {
if ("true".equals(forceAuthn)) {
profileOptions.setForceAuthN(true);
}
}
Expand Down

0 comments on commit 8aa7efe

Please sign in to comment.