Fix IRK match flag in AppleFactory

This commit corrects the `isIRKMatch` flag assignment in `AppleFactory.kt`. Previously, it was hardcoded to `true`. Now, it correctly uses the `isIrkMatch` variable determined by the Identity Resolving Key (IRK) comparison.
This commit is contained in:
darken
2025-06-13 09:27:43 +02:00
committed by Matthias Urhahn
parent f4e8f08f4f
commit 21d740ae51
@@ -88,7 +88,7 @@ class AppleFactory @Inject constructor(
scanResult = scanResult,
payload = payload,
flags = ApplePods.Flags(
isIRKMatch = true,
isIRKMatch = isIrkMatch,
),
)
}