Merge branch 'Ylianst:master' into DropDownMenu

This commit is contained in:
TheDevRyan 2025-10-25 11:37:50 +01:00 committed by GitHub
commit 8f560cbe93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 3 deletions

View File

@ -1541,7 +1541,8 @@
files = null;
}
if (serverinfo.logoutonidlesessiontimeout) {
window.location.href = 'logout';
if (urlargs.key) { window.location.href = 'logout?key=' + urlargs.key; }
else { window.location.href = 'logout'; }
}
}
}

View File

@ -2453,7 +2453,8 @@
files = null;
}
if (serverinfo.logoutonidlesessiontimeout) {
window.location.href = 'logout';
if (urlargs.key) { window.location.href = 'logout?key=' + urlargs.key; }
else { window.location.href = 'logout'; }
}
} else {
var ds = Math.round((serverinfo.timeout - delta) / 1000);

View File

@ -3087,7 +3087,8 @@
files = null;
}
if (serverinfo.logoutonidlesessiontimeout) {
window.location.href = 'logout';
if (urlargs.key) { window.location.href = 'logout?key=' + urlargs.key; }
else { window.location.href = 'logout'; }
}
} else {
var ds = Math.round((serverinfo.timeout - delta) / 1000);