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

Commit ab94caad authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Ignore null action in ActivityManagerService." into main am: 188e0810

parents 3314eae9 188e0810
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -5239,6 +5239,11 @@ public class ActivityManagerService extends IActivityManager.Stub
        mContext.registerReceiver(new BroadcastReceiver() {
            @Override
            public void onReceive(Context context, Intent intent) {
                final String action = intent.getAction();
                if (action == null) {
                    return;
                }
                String[] pkgs = intent.getStringArrayExtra(Intent.EXTRA_PACKAGES);
                if (pkgs != null) {
                    for (String pkg : pkgs) {