2
0

Fixed issue when cancelling touchID login.

This commit is contained in:
Maarten Billemont 2017-04-17 22:13:01 -04:00
parent d5d33da12f
commit 2c9ab5d153

View File

@ -82,8 +82,11 @@ static NSDictionary *createKeyQuery(MPUserEntity *user, BOOL newItem, MPKeyOrigi
if ([key keyIDForAlgorithm:user.algorithm])
inf( @"Found key in keychain for user: %@", user.userID );
else
else {
inf( @"No key found in keychain for user: %@", user.userID );
key = nil;
}
return key;
}