mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-30 05:48:09 +00:00
check that the packagename is not null
This commit is contained in:
parent
79869b4fc6
commit
55c46eb644
@ -212,6 +212,7 @@ public class AutofillService extends AccessibilityService {
|
||||
// Match with the app if a webview was not found or one was found but
|
||||
// there's no title or url to go by
|
||||
if (webViewTitle == null || (webViewTitle.equals("") && webViewURL == null)) {
|
||||
if (info.getPackageName() == null) return;
|
||||
packageName = info.getPackageName().toString();
|
||||
|
||||
// get the app name and find a corresponding password
|
||||
|
Loading…
x
Reference in New Issue
Block a user