mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-24 11:55:38 +01:00
only build id store if authed
This commit is contained in:
parent
f153c7509c
commit
0c8c216fba
@ -147,7 +147,11 @@ namespace Bit.iOS.Autofill
|
||||
public override void PrepareInterfaceForExtensionConfiguration()
|
||||
{
|
||||
base.PrepareInterfaceForExtensionConfiguration();
|
||||
var task = ASHelpers.ReplaceAllIdentities(Resolver.Resolve<ICipherService>());
|
||||
var authService = Resolver.Resolve<IAuthService>();
|
||||
if (authService.IsAuthenticated)
|
||||
{
|
||||
var task = ASHelpers.ReplaceAllIdentities(Resolver.Resolve<ICipherService>());
|
||||
}
|
||||
ExtensionContext.CompleteExtensionConfigurationRequest();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user