mirror of
https://github.com/bitwarden/mobile
synced 2026-01-06 18:43:43 +00:00
log autofill events
This commit is contained in:
@@ -27,7 +27,7 @@ namespace Bit.iOS.Autofill.Utilities
|
||||
var item = tableSource.Items.ElementAt(indexPath.Row);
|
||||
if(item == null)
|
||||
{
|
||||
cpViewController.CompleteRequest(null);
|
||||
cpViewController.CompleteRequest();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ namespace Bit.iOS.Autofill.Utilities
|
||||
totp = await totpService.GetCodeAsync(item.Totp);
|
||||
}
|
||||
}
|
||||
cpViewController.CompleteRequest(item.Username, item.Password, totp);
|
||||
cpViewController.CompleteRequest(item.Id, item.Username, item.Password, totp);
|
||||
}
|
||||
else if(!string.IsNullOrWhiteSpace(item.Username) || !string.IsNullOrWhiteSpace(item.Password) ||
|
||||
!string.IsNullOrWhiteSpace(item.Totp))
|
||||
|
||||
Reference in New Issue
Block a user