show device model for ios and android

This commit is contained in:
miloschwartz
2026-01-20 20:21:11 -08:00
parent 3eac80e666
commit a2b2fb804b
3 changed files with 6 additions and 9 deletions

View File

@@ -95,9 +95,9 @@ function getPlatformPostureData(
}
// macOS: Hard drive encryption, Biometric configuration, Firewall, System Integrity Protection (SIP), Gatekeeper, Firewall stealth mode
else if (normalizedPlatform === "macos") {
if (fingerprint.diskEncrypted !== null && fingerprint.diskEncrypted !== undefined) {
posture.diskEncrypted = fingerprint.diskEncrypted;
}
// if (fingerprint.diskEncrypted !== null && fingerprint.diskEncrypted !== undefined) {
// posture.diskEncrypted = fingerprint.diskEncrypted;
// }
if (fingerprint.biometricsEnabled !== null && fingerprint.biometricsEnabled !== undefined) {
posture.biometricsEnabled = fingerprint.biometricsEnabled;
}