forked from organicmaps/organicmaps
[MAPSME-3924] [ios] Fixed crash.
This commit is contained in:
parent
ae0a0abfab
commit
50fcb1fa70
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue