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

Commit 5284336d authored by Felipe Leme's avatar Felipe Leme
Browse files

Fix UserInfo Parcel

ag/9372503 put the order of reading preCreated from a UserInfo parcel
in the wrong spot. We fix it here.

Test: none
Merged-In: I4502e901ff2aac977c584fa8c5a3d1263be33572
Change-Id: I4502e901ff2aac977c584fa8c5a3d1263be33572
(cherry picked from commit e80af14d)
parent 8959c2dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -377,10 +377,10 @@ public class UserInfo implements Parcelable {
        lastLoggedInTime = source.readLong();
        lastLoggedInFingerprint = source.readString();
        partial = source.readBoolean();
        preCreated = source.readBoolean();
        profileGroupId = source.readInt();
        guestToRemove = source.readBoolean();
        restrictedProfileParentId = source.readInt();
        profileBadge = source.readInt();
        preCreated = source.readBoolean();
    }
}