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

Commit dbcfa018 authored by Jason Monk's avatar Jason Monk Committed by Android (Google) Code Review
Browse files

Merge "Fix crash in settings from incorrect parcelization"

parents 8cb850a4 5dec877f
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);
    }