Skip to content

Commit

Permalink
Fix compilation issue
Browse files Browse the repository at this point in the history
Fixes: #548

Signed-off-by: Hynek Mlnarik <[email protected]>
  • Loading branch information
hmlnarik committed Apr 18, 2024
1 parent ac86833 commit de864cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public void authenticate(AuthenticationFlowContext context) {
// This URL will be used by the application to submit the action token above to return back to the flow
String submitActionTokenUrl;
submitActionTokenUrl = Urls
.actionTokenBuilder(context.getUriInfo().getBaseUri(), token, clientId, authSession.getTabId())
.actionTokenBuilder(context.getUriInfo().getBaseUri(), token, clientId, authSession.getTabId(), "")
.queryParam(Constants.EXECUTION, context.getExecution().getId())
.queryParam(ExternalApplicationNotificationActionTokenHandler.QUERY_PARAM_APP_TOKEN, "{tokenParameterName}")
.build(context.getRealm().getName(), "{APP_TOKEN}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void requiredActionChallenge(RequiredActionContext context) {
// This URL will be used by the application to submit the action token above to return back to the flow
String submitActionTokenUrl;
submitActionTokenUrl = Urls
.actionTokenBuilder(context.getUriInfo().getBaseUri(), token, clientId, authSession.getTabId())
.actionTokenBuilder(context.getUriInfo().getBaseUri(), token, clientId, authSession.getTabId(), "")
.queryParam(ExternalApplicationNotificationReqactionActionTokenHandler.QUERY_PARAM_APP_TOKEN, "{tokenParameterName}")
.build(context.getRealm().getName(), "{APP_TOKEN}")
.toString();
Expand Down

0 comments on commit de864cf

Please sign in to comment.