entity save fix#3

This commit is contained in:
Artem Halushko 2020-04-28 15:21:36 +03:00
parent 9479b4194f
commit 0ef4a40375

View File

@ -183,14 +183,14 @@ export class MapWidgetController implements MapWidgetInterface {
} }
} }
}); });
if (attributes.length) { if (timeseries.length) {
attributeService.saveEntityTimeseries( attributeService.saveEntityTimeseries(
entityId, entityId,
LatestTelemetry.LATEST_TELEMETRY, LatestTelemetry.LATEST_TELEMETRY,
timeseries timeseries
).subscribe(() => { }); ).subscribe(() => { });
} }
if (timeseries.length) { if (attributes.length) {
attributeService.saveEntityAttributes( attributeService.saveEntityAttributes(
entityId, entityId,
AttributeScope.SERVER_SCOPE, AttributeScope.SERVER_SCOPE,