mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
only build id store if authed
This commit is contained in:
parent
f153c7509c
commit
0c8c216fba
1 changed files with 5 additions and 1 deletions
|
@ -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 a new issue