Update apprelays.js

if header is not null for websockets
This commit is contained in:
Simon Smith 2022-07-03 18:29:46 +01:00 committed by GitHub
parent 5ba9d7e503
commit 0f85b186cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 6 deletions

View File

@ -638,12 +638,14 @@ module.exports.CreateWebRelay = function (parent, db, args, domain) {
} }
} else { } else {
// Tunnel is now in web socket pass-thru mode // Tunnel is now in web socket pass-thru mode
if ((typeof header.connection == 'string') && (header.connection.toLowerCase() == 'upgrade')) { if (header != null) {
// Websocket upgrade succesful if ((typeof header.connection == 'string') && (header.connection.toLowerCase() == 'upgrade')) {
obj.socketParseState = 2; // Websocket upgrade succesful
} else { obj.socketParseState = 2;
// Unable to upgrade to web socket } else {
obj.close(); // Unable to upgrade to web socket
obj.close();
}
} }
} }
} }