Fix following sonarlint.

This commit is contained in:
Laur Ivan 2022-03-31 12:04:45 +02:00
parent 7d8e207ffa
commit 85400b46e1

View File

@ -33,11 +33,13 @@ async function main(evt: string, src: string, dest: string, value: Buffer) {
const dpt: DPTAndAddressID = (await getDPTforAddress(dest))
const newLocal = (dpt.dpt.decoder(value) === 1) ? true : false;
const document: MetricDocument = {
address_id: dpt.addressId,
dpt: dpt.id,
timestamp: new Date().getTime(),
value: dpt.id.startsWith('DPT1.') ? (dpt.dpt.decoder(value) === 1) ? true : false : dpt.dpt.decoder(value)
value: dpt.id.startsWith('DPT1.') ? newLocal : dpt.dpt.decoder(value)
}
upsert(document)