From db0f7cfbaea21afb83814572332b07baacbff6a9 Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Wed, 21 Jan 2026 14:43:14 -0800 Subject: [PATCH] add autoupdates to macos --- server/routers/client/getClient.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/routers/client/getClient.ts b/server/routers/client/getClient.ts index d981cbd3..01cb867c 100644 --- a/server/routers/client/getClient.ts +++ b/server/routers/client/getClient.ts @@ -113,6 +113,9 @@ function getPlatformPostureData( if (fingerprint.macosFirewallStealthMode !== null && fingerprint.macosFirewallStealthMode !== undefined) { posture.macosFirewallStealthMode = fingerprint.macosFirewallStealthMode; } + if (fingerprint.autoUpdatesEnabled !== null && fingerprint.autoUpdatesEnabled !== undefined) { + posture.autoUpdatesEnabled = fingerprint.autoUpdatesEnabled; + } } // Linux: Hard drive encryption, Firewall, AppArmor, SELinux, TPM availability else if (normalizedPlatform === "linux") { @@ -260,7 +263,7 @@ export async function getClient( postureData = getPlatformPostureData( client.currentFingerprint?.platform || null, client.currentFingerprint - ); + ); } const data: GetClientResponse = {