We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4731d08 commit 242148bCopy full SHA for 242148b
1 file changed
dojo/templates/base.html
@@ -1120,7 +1120,7 @@ <h4 class="modal-title" id="sessionModalLabel">Session Expiring Soon</h4>
1120
1121
setTimeout(() => {
1122
$('#sessionTimeoutModal').modal('show');
1123
- }, timeout * 1000);
+ }, Math.min(timeout, 2147483) * 1000); // Do not allow a buffer overflow here
1124
1125
}
1126
session_notifcation();
0 commit comments