[android] Added serialization of missed 'canBeReviewed' field in MapObject to fix crash during unmarshaling

This commit is contained in:
Александр Зацепин 2017-10-22 14:13:25 +03:00 committed by r.kuznetsov
parent d4eb88fbcb
commit 45ca59d076

View file

@ -385,6 +385,7 @@ public class MapObject implements Parcelable
dest.writeInt(mExtendedView ? 1 : 0);
dest.writeInt(mShouldShowUGC ? 1 : 0);
dest.writeInt(mCanBeRated ? 1 : 0);
dest.writeInt(mCanBeReviewed ? 1 : 0);
dest.writeTypedList(mBanners);
dest.writeList(mReachableByTaxiTypes);
dest.writeTypedList(mRatings);