1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

fixes for autofill service

This commit is contained in:
Kyle Spearrin
2019-05-17 15:43:14 -04:00
parent 9ab41c5de6
commit 3c58775ae2
3 changed files with 7 additions and 8 deletions

View File

@@ -417,8 +417,8 @@ namespace Bit.Droid.Services
activity.Finish();
return;
}
var structure = activity.Intent
.GetParcelableExtra(AutofillManager.ExtraAssistStructure) as AssistStructure;
var structure = activity.Intent.GetParcelableExtra(
AutofillManager.ExtraAssistStructure) as AssistStructure;
if(structure == null)
{
activity.SetResult(Result.Canceled);
@@ -433,6 +433,7 @@ namespace Bit.Droid.Services
activity.Finish();
return;
}
var task = CopyTotpAsync(cipher);
var dataset = AutofillHelpers.BuildDataset(activity, parser.FieldCollection, new FilledItem(cipher));
var replyIntent = new Intent();
replyIntent.PutExtra(AutofillManager.ExtraAuthenticationResult, dataset);