mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Handle comms link closely whilst completing the initial connect
This commit is contained in:
parent
6bc3f82afe
commit
6c00194d35
@ -88,6 +88,7 @@ function start() {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
var completeConnection = function(userScope,sendAck) {
|
var completeConnection = function(userScope,sendAck) {
|
||||||
|
try {
|
||||||
if (!userScope || !Permissions.hasPermission(userScope,"status.read")) {
|
if (!userScope || !Permissions.hasPermission(userScope,"status.read")) {
|
||||||
ws.send(JSON.stringify({auth:"fail"}));
|
ws.send(JSON.stringify({auth:"fail"}));
|
||||||
ws.close();
|
ws.close();
|
||||||
@ -99,6 +100,10 @@ function start() {
|
|||||||
ws.send(JSON.stringify({auth:"ok"}));
|
ws.send(JSON.stringify({auth:"ok"}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} catch(err) {
|
||||||
|
// Just in case the socket closes before we attempt
|
||||||
|
// to send anything.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (msg.auth) {
|
if (msg.auth) {
|
||||||
Tokens.get(msg.auth).then(function(client) {
|
Tokens.get(msg.auth).then(function(client) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user