From 50ccd2e909bf44b32839291ff41918ec290ad592 Mon Sep 17 00:00:00 2001 From: Aaron Jahoda <41804549+ajahoda@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:14:50 -0700 Subject: [PATCH] fix capitalization typo --- src/steps/devices/converters.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/devices/converters.ts b/src/steps/devices/converters.ts index cf2377a..d60705a 100644 --- a/src/steps/devices/converters.ts +++ b/src/steps/devices/converters.ts @@ -34,7 +34,7 @@ export function createDeviceEntity(device: any): Entity { model: null, serial: device.SerialNumber || null, serialNumber: device.SerialNumber || null, - aadDeviceId: device.AADDeviceId, + aadDeviceId: device.AADDeviceID, adSiteName: device.Active0, active: device.Active0 == true, // This appears to be 0/1 or true/false depending on the table used. Deliberately picking double equals to make sure both work. clientVersion: device.Client_Version0,