fix possible loss of trust chain

This commit is contained in:
zefie
2021-08-08 18:47:50 -04:00
parent d6b8ed40ed
commit 04b5b7f578

View File

@@ -31,11 +31,10 @@ if (socket.ssid !== null) {
} }
} }
if (!ssid_sessions[socket.ssid].getSessionData("registered") && (!request_headers.query.guest_login || !minisrv_config.config.allow_guests)) gourl = "wtv-register:/splash"; if (!ssid_sessions[socket.ssid].getSessionData("registered") && (!request_headers.query.guest_login || !minisrv_config.config.allow_guests)) gourl = "wtv-register:/splash?";
if (gourl) { if (gourl) {
headers = `200 OK headers = `200 OK
Connection: Close
wtv-open-isp-disabled: false wtv-open-isp-disabled: false
`; `;
if (!ssid_sessions[socket.ssid].getSessionData("registered") && (!request_headers.query.guest_login || !minisrv_config.config.allow_guests)) { if (!ssid_sessions[socket.ssid].getSessionData("registered") && (!request_headers.query.guest_login || !minisrv_config.config.allow_guests)) {
@@ -44,7 +43,7 @@ wtv-ticket: ${wtvsec_login.ticket_b64}
${getServiceString('wtv-register')} ${getServiceString('wtv-register')}
${getServiceString('wtv-head-waiter')} ${getServiceString('wtv-head-waiter')}
${getServiceString('wtv-star')} ${getServiceString('wtv-star')}
wtv-boot-url: wtv-register:/splash wtv-boot-url: wtv-register:/splash?
` `
} }
headers += `wtv-visit: ${gourl} headers += `wtv-visit: ${gourl}