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

Commit c9496738 authored by Adrian Roos's avatar Adrian Roos Committed by Android (Google) Code Review
Browse files

Merge "Fix broken remote inputs" into nyc-dev

parents 764d9159 5dd685f2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1973,13 +1973,13 @@ public class RemoteViews implements Parcelable, Filter {

        public SetRemoteInputsAction(Parcel parcel) {
            viewId = parcel.readInt();
            remoteInputs = parcel.readParcelableArray(RemoteInput.class.getClassLoader());
            remoteInputs = parcel.createTypedArray(RemoteInput.CREATOR);
        }

        public void writeToParcel(Parcel dest, int flags) {
            dest.writeInt(TAG);
            dest.writeInt(viewId);
            dest.writeParcelableArray(remoteInputs, flags);
            dest.writeTypedArray(remoteInputs, flags);
        }

        @Override