mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-23 11:45:38 +01:00
catch InteractionNotAllowed
This commit is contained in:
parent
011f04e1dc
commit
421834153d
@ -34,9 +34,9 @@ namespace Bit.iOS.Core.Services
|
||||
var formattedKey = string.Format(_keyFormat, appId, key);
|
||||
byte[] dataBytes = null;
|
||||
using(var existingRecord = GetKeyRecord(formattedKey))
|
||||
using(var record = SecKeyChain.QueryAsRecord(existingRecord, out SecStatusCode resultCode))
|
||||
using(var record = SecKeyChain.QueryAsRecord(existingRecord, out var resultCode))
|
||||
{
|
||||
if(resultCode == SecStatusCode.ItemNotFound)
|
||||
if(resultCode == SecStatusCode.ItemNotFound || resultCode == SecStatusCode.InteractionNotAllowed)
|
||||
{
|
||||
return (T)(object)null;
|
||||
}
|
||||
@ -116,7 +116,7 @@ namespace Bit.iOS.Core.Services
|
||||
private SecRecord GetExistingRecord(string key)
|
||||
{
|
||||
var existingRecord = GetKeyRecord(key);
|
||||
SecKeyChain.QueryAsRecord(existingRecord, out SecStatusCode resultCode);
|
||||
SecKeyChain.QueryAsRecord(existingRecord, out var resultCode);
|
||||
return resultCode == SecStatusCode.Success ? existingRecord : null;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user