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

Commit 5dd685f2 authored by Adrian Roos's avatar Adrian Roos
Browse files

Fix broken remote inputs

Bug: 22452379
Change-Id: Ibcf0cf23e9f163b37270d42629de01083e12643c
parent 1142b265
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