mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
remove base method calls
This commit is contained in:
parent
0c8c216fba
commit
d957111249
1 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ namespace Bit.iOS.Autofill
|
||||||
|
|
||||||
public override void ProvideCredentialWithoutUserInteraction(ASPasswordCredentialIdentity credentialIdentity)
|
public override void ProvideCredentialWithoutUserInteraction(ASPasswordCredentialIdentity credentialIdentity)
|
||||||
{
|
{
|
||||||
base.ProvideCredentialWithoutUserInteraction(credentialIdentity);
|
// base.ProvideCredentialWithoutUserInteraction(credentialIdentity);
|
||||||
|
|
||||||
bool canGetCredentials = false;
|
bool canGetCredentials = false;
|
||||||
var authService = Resolver.Resolve<IAuthService>();
|
var authService = Resolver.Resolve<IAuthService>();
|
||||||
|
@ -104,7 +104,7 @@ namespace Bit.iOS.Autofill
|
||||||
{
|
{
|
||||||
var err = new NSError(new NSString("ASExtensionErrorDomain"),
|
var err = new NSError(new NSString("ASExtensionErrorDomain"),
|
||||||
Convert.ToInt32(ASExtensionErrorCode.UserInteractionRequired), null);
|
Convert.ToInt32(ASExtensionErrorCode.UserInteractionRequired), null);
|
||||||
ExtensionContext.CancelRequest(err);
|
this.ExtensionContext.CancelRequest(err);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_context.CredentialIdentity = credentialIdentity;
|
_context.CredentialIdentity = credentialIdentity;
|
||||||
|
|
Loading…
Reference in a new issue