Skip to content

Commit 46edbfb

Browse files
authored
Fix Duo external redirect after SSO auth (#6832)
1 parent b994922 commit 46edbfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/org/labkey/api/security/AuthenticationManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ public ModelAndView getView(FORM form, BindException errors) throws Exception
468468
AuthenticationManager.setPrimaryAuthenticationResult(request, primaryResult);
469469
AuthenticationResult result = AuthenticationManager.handleAuthentication(request, getContainer());
470470

471-
return HttpView.redirect(result.getRedirectURL());
471+
return HttpView.redirect(result.getRedirectURL(), true);
472472
}
473473

474474
primaryResult.getStatus().addUserErrorMessage(errors, primaryResult, null, null);

0 commit comments

Comments
 (0)