mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +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()
|
public override void PrepareInterfaceForExtensionConfiguration()
|
||||||
{
|
{
|
||||||
base.PrepareInterfaceForExtensionConfiguration();
|
base.PrepareInterfaceForExtensionConfiguration();
|
||||||
|
var authService = Resolver.Resolve<IAuthService>();
|
||||||
|
if (authService.IsAuthenticated)
|
||||||
|
{
|
||||||
var task = ASHelpers.ReplaceAllIdentities(Resolver.Resolve<ICipherService>());
|
var task = ASHelpers.ReplaceAllIdentities(Resolver.Resolve<ICipherService>());
|
||||||
|
}
|
||||||
ExtensionContext.CompleteExtensionConfigurationRequest();
|
ExtensionContext.CompleteExtensionConfigurationRequest();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue