diff --git a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java index 512770529c..b17ed2250b 100644 --- a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java +++ b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java @@ -1251,8 +1251,12 @@ public class PlacePageView extends NestedScrollView if (mSponsored == null || mMapObject == null) return; - Promo.INSTANCE.nativeRequestCityGallery(policy, mMapObject.getLat(), mMapObject.getLon(), - UTM.UTM_PLACEPAGE_GALLERY); + if (hasPromoGallery) + { + Promo.INSTANCE.nativeRequestCityGallery(policy, mMapObject.getLat(), mMapObject.getLon(), + UTM.UTM_PLACEPAGE_GALLERY); + } + mSponsored.updateId(mMapObject); mSponsoredPrice = mSponsored.getPrice(); String currencyCode = Utils.getCurrencyCode();