From cb22572f2bff22d416f2c93f35dc8272628adffd Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 17 Nov 2017 10:05:13 -0500 Subject: [PATCH] dont offer autofill in bitwarden app --- src/Android/Autofill/AutofillService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Android/Autofill/AutofillService.cs b/src/Android/Autofill/AutofillService.cs index 35a66e5c6..3e0a2d405 100644 --- a/src/Android/Autofill/AutofillService.cs +++ b/src/Android/Autofill/AutofillService.cs @@ -30,7 +30,8 @@ namespace Bit.Android.Autofill var parser = new Parser(structure); parser.ParseForFill(); - if(!parser.FieldCollection.Fields.Any() || string.IsNullOrWhiteSpace(parser.Uri)) + if(!parser.FieldCollection.Fields.Any() || string.IsNullOrWhiteSpace(parser.Uri) || + parser.Uri == "androidapp://com.x8bit.bitwarden") { return; }