Fixed server exception in MPS server.

This commit is contained in:
Ylian Saint-Hilaire 2021-07-29 13:30:54 -07:00
parent 31914be188
commit f59c2f2bb0

View File

@ -635,7 +635,8 @@ module.exports.CreateMpsServer = function (parent, db, args, certificates) {
}
// Find the device group for this CIRA connection. Since Intel AMT does not allow @ or $ in the username, we escape these.
// For possible for CIRA-LMS connections to still send @ or $, so we need to escape both sides.
const meshIdStart = ('/' + username).replace(/\@/g, 'X').replace(/\$/g, 'X'), mesh = null;
var mesh = null;
const meshIdStart = ('/' + username).replace(/\@/g, 'X').replace(/\$/g, 'X');
if (obj.parent.webserver.meshes) {
for (var i in obj.parent.webserver.meshes) {
if (obj.parent.webserver.meshes[i]._id.replace(/\@/g, 'X').replace(/\$/g, 'X').indexOf(meshIdStart) > 0) {