1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-05 01:53:17 +00:00

autofill fixes

This commit is contained in:
Kyle Spearrin
2017-12-22 18:34:46 -05:00
parent e2fc5fff23
commit 7a19c50ec0
3 changed files with 11 additions and 29 deletions

View File

@@ -35,7 +35,7 @@ namespace Bit.Android.Services
var activity = (MainActivity)CrossCurrentActivity.Current.Activity;
var afm = (AutofillManager)activity.GetSystemService(Java.Lang.Class.FromType(typeof(AutofillManager)));
return afm.IsEnabled;
return afm.IsEnabled && afm.HasEnabledAutofillServices;
}
}
}