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

Commit dc4a950e authored by RoboErik's avatar RoboErik Committed by Android (Google) Code Review
Browse files

Merge "Fix crash in dumpsys media_session"

parents 547c9e52 7b3da2d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -823,7 +823,7 @@ public class MediaSessionService extends SystemService implements Monitor {
                pw.println("User Records:");
                count = mUserRecords.size();
                for (int i = 0; i < count; i++) {
                    UserRecord user = mUserRecords.get(i);
                    UserRecord user = mUserRecords.get(mUserRecords.keyAt(i));
                    user.dumpLocked(pw, "");
                }
            }