1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

APF/MPS fix.

This commit is contained in:
Ylian Saint-Hilaire 2020-10-07 23:18:15 -07:00
parent bd61bfe2d0
commit 47db002aaf
2 changed files with 7 additions and 1 deletions

View file

@ -867,7 +867,7 @@ module.exports.CreateMpsServer = function (parent, db, args, certificates) {
}
obj.SetupCiraChannelToHost = function (host, targetport) {
var ciraconn = obj.parent.mpsserver.ciraConnections[host];
var ciraconn = obj.ciraConnections[host];
if (ciraconn == null) return null;
return obj.SetupCiraChannel(ciraconn, targetport);
}