Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit b315ff6

Browse files
committed
seems like the info can be null too
1 parent 57358a8 commit b315ff6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

app/src/main/java/com/zeapo/pwdstore/autofill/AutofillService.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ public void onAccessibilityEvent(AccessibilityEvent event) {
199199
// we are now going to attempt to fill, save AccessibilityNodeInfo for later in decryptAndVerify
200200
// (there should be a proper way to do this, although this seems to work 90% of the time)
201201
info = event.getSource();
202+
if (info == null) return;
202203

203204
// save the dialog's corresponding window so we can use getWindows() in dismissDialog
204205
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

0 commit comments

Comments
 (0)