From 1ff25275d53ca52e84295cf8cb4c3bc7357685b2 Mon Sep 17 00:00:00 2001 From: "Alexander.Trofimov" Date: Thu, 18 Apr 2019 13:53:52 +0300 Subject: [PATCH] [license] Fix --- Common/sources/license.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/sources/license.js b/Common/sources/license.js index 0aee05f5..696f0a58 100644 --- a/Common/sources/license.js +++ b/Common/sources/license.js @@ -97,7 +97,7 @@ exports.readLicense = function*() { res.light = (true === oLicense['light'] || 'true' === oLicense['light']); // Someone who likes to put json string instead of bool res.branding = (true === oLicense['branding'] || 'true' === oLicense['branding']); // Someone who likes to put json string instead of bool - res.connections = (!oLicense.hasOwnProperty('customization') || !!oLicense['customization']); // Check exist property for old licenses + res.customization = (!oLicense.hasOwnProperty('customization') || !!oLicense['customization']); // Check exist property for old licenses res.plugins = true === oLicense['plugins']; if (oLicense.hasOwnProperty('connections')) { res.connections = oLicense['connections'] >> 0;