Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 879cd998 authored by gang.huang's avatar gang.huang
Browse files

Ignore null action in AppBindingService.

Bug: 376727362
Test: Manual.
Change-Id: Ia77839a4ce5fbbb31d1d0d5e1aa1f4ce0a8c5aec
parent e4f54266
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -235,6 +235,9 @@ public class AppBindingService extends Binder {
            }

            final String action = intent.getAction();
            if (action == null) {
                return;
            }

            if (Intent.ACTION_USER_REMOVED.equals(action)) {
                onUserRemoved(userId);