PasswordActivity.cs: Do not clear the password field

when Yubikey is used to fill in the password entry.
This commit is contained in:
DEXTER
2018-02-24 14:06:39 +01:00
parent 3a1fcd2147
commit 6dd6eff02c

View File

@@ -1770,10 +1770,9 @@ namespace keepass2android
if ((intent != null) && (intent.HasExtra(Intents.OtpExtraKey)))
{
string otp = intent.GetStringExtra(Intents.OtpExtraKey);
_keepPasswordInOnResume = true;
if (this.KeyProviderType == KeyProviders.Otp)
{
_keepPasswordInOnResume = true;
if (_otpInfo == null)
{