mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +03:00
fix null ref with e.source
This commit is contained in:
parent
170876ac16
commit
c71608824b
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ namespace Bit.Android
|
|||
switch(e.EventType)
|
||||
{
|
||||
case EventTypes.ViewFocused:
|
||||
if(!e.Source.Password || !_appSettings.AutofillPasswordField)
|
||||
if(e.Source == null || !e.Source.Password || !_appSettings.AutofillPasswordField)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue