From eb4fa8620d15914b2479791b211e3c415c00c79c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 29 May 2017 20:45:42 -0400 Subject: [PATCH] dont skip if there is something to autofill --- src/Android/AutofillService.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Android/AutofillService.cs b/src/Android/AutofillService.cs index 53c267b91..2d88d5f85 100644 --- a/src/Android/AutofillService.cs +++ b/src/Android/AutofillService.cs @@ -108,7 +108,7 @@ namespace Bit.Android { break; } - else if(_appSettings.AutofillPasswordField) + else if(_appSettings.AutofillPasswordField && AutofillActivity.LastCredentials == null) { CancelNotification(notificationManager); break; @@ -202,10 +202,9 @@ namespace Bit.Android cancelNotification = false; } } - - AutofillActivity.LastCredentials = null; } + AutofillActivity.LastCredentials = null; passwordNodes.Dispose(); return cancelNotification; }