remove ttyd params

This commit is contained in:
Maxim Devaev 2023-12-08 18:34:21 +02:00
parent ae014a259f
commit 5c9d98bc26

View File

@ -251,7 +251,7 @@ export function Session() {
let close_hook = null;
let has_webterm = (state.webterm && (state.webterm.enabled || state.webterm.started));
if (has_webterm) {
let path = "/" + state.webterm.path;
let path = "/" + state.webterm.path.split("?")[0]; // Remove all params like disableLeaveAlert=true
show_hook = function() {
tools.info("Terminal opened: ", path);
$("webterm-iframe").src = path;