Fix bool for supabase.

This commit is contained in:
Laur Ivan 2022-03-17 08:25:59 +01:00
parent 7b2b01a312
commit 7d8e207ffa

View File

@ -37,7 +37,7 @@ async function main(evt: string, src: string, dest: string, value: Buffer) {
address_id: dpt.addressId,
dpt: dpt.id,
timestamp: new Date().getTime(),
value: dpt.dpt.decoder(value)
value: dpt.id.startsWith('DPT1.') ? (dpt.dpt.decoder(value) === 1) ? true : false : dpt.dpt.decoder(value)
}
upsert(document)