alsmanager_lib 3.0.84 → 3.0.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/modules.js +2 -2
- package/package.json +1 -1
package/lib/modules.js
CHANGED
|
@@ -4320,7 +4320,7 @@ function readDeviceProperties(db_used, id_device) {
|
|
|
4320
4320
|
//Update Device Properties after import
|
|
4321
4321
|
function updateDevicePropertiesSQLite(id_prop, is_imported, id_config) {
|
|
4322
4322
|
var query = "update device_properties set ";
|
|
4323
|
-
query += "is_imported " + is_imported + " ";
|
|
4323
|
+
query += "is_imported = " + is_imported + " ";
|
|
4324
4324
|
if (id_config) {
|
|
4325
4325
|
query += ", id_config = " + id_config + " ";
|
|
4326
4326
|
}
|
|
@@ -4330,7 +4330,7 @@ function updateDevicePropertiesSQLite(id_prop, is_imported, id_config) {
|
|
|
4330
4330
|
|
|
4331
4331
|
function updateDevicePropertiesMySQL(id_prop, is_imported, id_config) {
|
|
4332
4332
|
var query = "update device_properties set ";
|
|
4333
|
-
query += "is_imported :is_imported ";
|
|
4333
|
+
query += "is_imported = :is_imported ";
|
|
4334
4334
|
if (id_config) {
|
|
4335
4335
|
query += ", id_config = :id_config ";
|
|
4336
4336
|
}
|