mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-04-04 03:40:25 -04:00
fix one ping/pong function
Signed-off-by: si458 <simonsmith5521@gmail.com>
This commit is contained in:
parent
4098805798
commit
6f78f9e276
@ -842,11 +842,8 @@ module.exports.CreateMstscRelay = function (parent, db, ws, req, args, domain) {
|
|||||||
obj.relaySocket.resume();
|
obj.relaySocket.resume();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (typeof data == 'string') {
|
|
||||||
// Forward any ping/pong commands to the browser
|
|
||||||
var cmd = null;
|
|
||||||
try { // Forward any ping/pong commands to the browser
|
try { // Forward any ping/pong commands to the browser
|
||||||
cmd = JSON.parse(data);
|
var cmd = JSON.parse(data);
|
||||||
if ((cmd != null) && (cmd.ctrlChannel == '102938')) {
|
if ((cmd != null) && (cmd.ctrlChannel == '102938')) {
|
||||||
if (cmd.type == 'ping') { send(['ping']); }
|
if (cmd.type == 'ping') { send(['ping']); }
|
||||||
else if (cmd.type == 'pong') { send(['pong']); }
|
else if (cmd.type == 'pong') { send(['pong']); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user