Skip to content

Commit b7be970

Browse files
committed
Fix validation url not set correctly
1 parent 7c55554 commit b7be970

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

openid-connect-server-webapp/src/main/webapp/WEB-INF/views/sessionState.jsp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<%@ page contentType="text/html;charset=UTF-8" %>
2+
<%@ page import="org.mitre.openid.connect.web.SessionStateManagementController" %>
23
<!DOCTYPE html>
34
<html>
45
<head>
@@ -9,7 +10,7 @@
910
enabled: ${config.sessionStateEnabled},
1011
cookieName: "${config.sessionStateCookieName}",
1112
reValidateSeconds: ${config.sessionStateRevalidationInterval},
12-
validationUrl: "${ config.issuer }${ config.issuer.endsWith('/') ? '' : '/' }${SessionStateManagementController.VALIDATION_URL}"
13+
validationUrl: "${ config.issuer }${ config.issuer.endsWith('/') ? '' : '/' }${ SessionStateManagementController.VALIDATION_URL }"
1314
};
1415
1516
/*

0 commit comments

Comments
 (0)