Browser Steps - error reporting and session shutdown improvements (#3137)

This commit is contained in:
dgtlmoon
2025-04-22 12:18:51 +02:00
committed by GitHub
parent ffde79ecac
commit 72a1c3dda1
3 changed files with 315 additions and 107 deletions

View File

@@ -251,6 +251,10 @@ $(document).ready(function () {
400: function () {
// More than likely the CSRF token was lost when the server restarted
alert("There was a problem processing the request, please reload the page.");
},
401: function (err) {
// This will be a custom error
alert(err.responseText);
}
}
}).done(function (data) {