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

Commit a4739b9f authored by Daniel Nishi's avatar Daniel Nishi
Browse files

Fix music crash regression: Part Deux.

Bug: 34888282
Test: Manual as a result of 34768986
Change-Id: Icebcb49befed5cc39eef7707ca6d97c45ec958aa
parent 99f0b444
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1139,7 +1139,7 @@ public class ManageApplications extends InstrumentedPreferenceFragment
        public void onPackageSizeChanged(String packageName) {
            for (int i = 0; i < mActive.size(); i++) {
                AppViewHolder holder = (AppViewHolder) mActive.get(i).getTag();
                if (holder == null) {
                if (holder == null || holder.entry == null) {
                    continue;
                }
                ApplicationInfo info = holder.entry.info;