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

Commit 5dec877f authored by Jason Monk's avatar Jason Monk
Browse files

Fix crash in settings from incorrect parcelization

Bug: 20159614
Change-Id: Id7bf48f2337c8764a37b5f6ff836fbae4019c747
parent 5f937152
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -161,7 +161,7 @@ public class DashboardTile implements Parcelable {
        final int N = userHandle.size();
        dest.writeInt(N);
        for (int i = 0; i < N; i++) {
            dest.writeParcelable(userHandle.get(i), flags);
            userHandle.get(i).writeToParcel(dest, flags);
        }
        dest.writeBundle(extras);
    }