mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 12:43:39 +00:00
fix null ref with e.source
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user