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

Commit 8f30bc9e authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add null check for component" into main

parents fb7886be 6e40abe9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1252,7 +1252,7 @@ public class PackageManagerServiceUtils {
                }
                final ParsedMainComponent comp = componentInfoToComponent(
                        resolveInfo.getComponentInfo(), resolver, isReceiver);
                if (!comp.getIntents().isEmpty() && intent.getAction() == null) {
                if (comp != null && !comp.getIntents().isEmpty() && intent.getAction() == null) {
                    match = false;
                }
            } else if (c instanceof IntentFilter) {