mirror of
https://github.com/bitwarden/mobile
synced 2025-01-28 17:29:18 +01:00
only prompt for sso if using key connector (#1667)
This commit is contained in:
parent
14d2b833d8
commit
2a373dd3fc
@ -185,9 +185,13 @@ namespace Bit.iOS.Core.Controllers
|
|||||||
base.ViewDidAppear(animated);
|
base.ViewDidAppear(animated);
|
||||||
|
|
||||||
// Users with key connector and without biometric or pin has no MP to unlock with
|
// Users with key connector and without biometric or pin has no MP to unlock with
|
||||||
if (_usesKeyConnector && (!(_pinLock || _biometricLock)) || ( _biometricLock && !_biometricIntegrityValid))
|
if (_usesKeyConnector)
|
||||||
{
|
{
|
||||||
PromptSSO();
|
if (!(_pinLock || _biometricLock) ||
|
||||||
|
(_biometricLock && !_biometricIntegrityValid))
|
||||||
|
{
|
||||||
|
PromptSSO();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (!_biometricLock || !_biometricIntegrityValid)
|
else if (!_biometricLock || !_biometricIntegrityValid)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user