Better replace for complex semver comparisons

This commit is contained in:
Ryan Blenis 2019-11-24 16:36:12 -05:00
parent 8e55c9b74a
commit a0f0f31c86
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ module.exports.pluginHandler = function (parent) {
// MeshCentral doesn't adhere to semantic versioning (due to the -<alpha_char> at the end of the version) // MeshCentral doesn't adhere to semantic versioning (due to the -<alpha_char> at the end of the version)
// Convert the letter to ASCII for a "true" version number comparison // Convert the letter to ASCII for a "true" version number comparison
var mcCurVer = parent.currentVer.replace(/-(.)$/, (m, p1) => { return p1.charCodeAt(0); }); var mcCurVer = parent.currentVer.replace(/-(.)$/, (m, p1) => { return p1.charCodeAt(0); });
var piCompatVer = newconf.meshCentralCompat.replace(/-(.)$/, (m, p1) => { return p1.charCodeAt(0); }); var piCompatVer = newconf.meshCentralCompat.replace(/-(.)\b/g, (m, p1) => { return p1.charCodeAt(0); });
latestRet.push({ latestRet.push({
"id": curconf._id, "id": curconf._id,
"installedVersion": curconf.version, "installedVersion": curconf.version,