mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
lock not required during app ext setup
This commit is contained in:
parent
e4f3671ae0
commit
253ed75800
1 changed files with 6 additions and 0 deletions
|
@ -98,6 +98,12 @@ namespace Bit.iOS.Extension
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(_context.ProviderType == Constants.UTTypeAppExtensionSetup)
|
||||||
|
{
|
||||||
|
PerformSegue("setupSegue", this);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var lockService = Resolver.Resolve<ILockService>();
|
var lockService = Resolver.Resolve<ILockService>();
|
||||||
var lockType = lockService.GetLockTypeAsync(false).GetAwaiter().GetResult();
|
var lockType = lockService.GetLockTypeAsync(false).GetAwaiter().GetResult();
|
||||||
switch(lockType)
|
switch(lockType)
|
||||||
|
|
Loading…
Reference in a new issue