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

Commit d3cb6380 authored by Hall Liu's avatar Hall Liu Committed by Gerrit Code Review
Browse files

Merge "Use proper classloader when reading from parcel"

parents 6ca155f8 aaf4b47e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -351,7 +351,7 @@ public class ImsCallProfile implements Parcelable {
        mServiceType = in.readInt();
        mCallType = in.readInt();
        mCallExtras = in.readBundle();
        mMediaProfile = in.readParcelable(null);
        mMediaProfile = in.readParcelable(ImsStreamMediaProfile.class.getClassLoader());
    }

    public static final Creator<ImsCallProfile> CREATOR = new Creator<ImsCallProfile>() {