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

Commit 216d1748 authored by Patrick Baumann's avatar Patrick Baumann
Browse files

Fixes NPE when system update couldn't be parsed

Change-Id: I9034ea2e9411dff79657b86fbfd2418c073621ea
Fixes: 67235938
Test: manual - update system with already installed app and reboot
parent b6d988c4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -8440,8 +8440,8 @@ public class PackageManagerService extends IPackageManager.Stub
            }
            pkg.mExtras = updatedPs;
            throw new PackageManagerException(Log.WARN, "Package " + ps.name + " at "
                    + pkg.codePath + " ignored: updated version " + ps.versionCode
            throw new PackageManagerException(Log.WARN, "Package " + pkg.packageName + " at "
                    + pkg.codePath + " ignored: updated version " + updatedPs.versionCode
                    + " better than this " + pkg.mVersionCode);
        }