[MAPSME-4903] [ios] Fixed local ads statistics sending.

This commit is contained in:
Ilya Grechuhin 2017-07-07 13:24:15 +03:00 committed by r.kuznetsov
parent 142720ca94
commit 33a51b1d48
2 changed files with 2 additions and 1 deletions

View file

@ -653,6 +653,8 @@ using namespace place_page;
- (NSString *)localAdsURL { return @(m_info.GetLocalAdsUrl().c_str()); }
- (void)logLocalAdsEvent:(local_ads::EventType)type
{
if (m_info.GetLocalAdsStatus() != place_page::LocalAdsStatus::Customer)
return;
auto const featureID = m_info.GetID();
auto const & mwmInfo = featureID.m_mwmId.GetInfo();
if (!mwmInfo)

View file

@ -525,7 +525,6 @@ void logSponsoredEvent(MWMPlacePageData * data, NSString * eventName)
if (!url)
return;
[self.ownerViewController openUrl:url];
[data logLocalAdsEvent:local_ads::EventType::OpenInfo];
}
- (void)openViatorURL:(nullable NSURL *)url