mirror of
https://github.com/bitwarden/android.git
synced 2025-03-14 02:08:48 +03:00
null check on cipher when autofilling
This commit is contained in:
parent
9d6fc73fcc
commit
2272b10820
1 changed files with 4 additions and 1 deletions
|
@ -492,7 +492,10 @@ namespace Bit.Droid.Services
|
|||
}
|
||||
activity.Finish();
|
||||
_messagingService.Send("finishMainActivity");
|
||||
var eventTask = _eventServiceFunc().CollectAsync(EventType.Cipher_ClientAutofilled, cipher.Id);
|
||||
if(cipher != null)
|
||||
{
|
||||
var eventTask = _eventServiceFunc().CollectAsync(EventType.Cipher_ClientAutofilled, cipher.Id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue