Fix write to parcelable for Place object (#3248)

This commit is contained in:
Vivek Maskara 2019-12-01 12:33:08 +05:30 committed by Josephine Lim
parent 01ed96b957
commit 9244c0015b

View file

@ -200,6 +200,8 @@ public class Place implements Parcelable {
dest.writeParcelable(location, 0); dest.writeParcelable(location, 0);
dest.writeString(category); dest.writeString(category);
dest.writeParcelable(siteLinks, 0); dest.writeParcelable(siteLinks, 0);
dest.writeString(pic);
dest.writeString(destroyed);
} }
public static final Creator<Place> CREATOR = new Creator<Place>() { public static final Creator<Place> CREATOR = new Creator<Place>() {