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

Commit d1db1e14 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Check if ParsedMainComponent is null before dereferencing" into tm-qpr-dev am: 306175e9

parents 5d00e2cb 306175e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1129,7 +1129,7 @@ public class PackageManagerServiceUtils {
                throw new IllegalArgumentException("Unsupported component type");
            }

            if (comp.getIntents().isEmpty()) {
            if (comp == null || comp.getIntents().isEmpty()) {
                continue;
            }