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

Commit d1d37554 authored by Josep del Río's avatar Josep del Río Committed by Automerger Merge Worker
Browse files

Merge "Reconcile WorkSource parcel and unparcel code." into qt-dev am: 9a64b4bb am: 4a3603ed

parents 584d1879 4a3603ed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ public class WorkSource implements Parcelable {
        mNames = in.createStringArray();

        int numChains = in.readInt();
        if (numChains > 0) {
        if (numChains >= 0) {
            mChains = new ArrayList<>(numChains);
            in.readParcelableList(mChains, WorkChain.class.getClassLoader());
        } else {