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

Commit e76e7014 authored by Adam Skory's avatar Adam Skory
Browse files

Don't forget to parcel mIsAppProvidedIntent

If you forget to parcel it like I did, it's
not going to do you much good.

Change-Id: I85191594e7ffab2c36aeed317932b126da288bdf
parent a28863e7
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -152,6 +152,7 @@ public class AssistContent {
        if (in.readInt() != 0) {
            mUri = Uri.CREATOR.createFromParcel(in);
        }
        mIsAppProvidedIntent = in.readInt() == 1;
    }

    /** @hide */
@@ -174,5 +175,6 @@ public class AssistContent {
        } else {
            dest.writeInt(0);
        }
        dest.writeInt(mIsAppProvidedIntent ? 1 : 0);
    }
}