[MAPSME-3924] [ios] Fixed crash.

This commit is contained in:
Ilya Grechuhin 2017-02-27 11:28:25 +03:00 committed by Sergey Yershov
parent ae0a0abfab
commit 50fcb1fa70

View file

@ -144,7 +144,7 @@ extern NSString * const kAlohalyticsTapEventKey;
- (void)showPlacePage:(place_page::Info const &)info
{
auto show = ^{
auto show = ^(place_page::Info const & info) {
self.trafficButtonHidden = YES;
[self.placePageManager show:info];
if (IPAD)
@ -157,9 +157,10 @@ extern NSString * const kAlohalyticsTapEventKey;
using namespace network_policy;
if (!CanUseNetwork() && GetStage() == platform::NetworkPolicy::Stage::Session)
[[MWMAlertViewController activeAlertController] presentMobileInternetAlertWithBlock:show];
[[MWMAlertViewController activeAlertController]
presentMobileInternetAlertWithBlock:[show, info] { show(info); }];
else
show();
show(info);
}
- (void)searchViewDidEnterState:(MWMSearchManagerState)state