forked from organicmaps/organicmaps
[ios] fix: When user is in the map and gets out (without killing app) then returns back it shows main page instead of map
This commit is contained in:
parent
3d9ebab8c2
commit
e0d98091ed
1 changed files with 6 additions and 5 deletions
|
@ -126,6 +126,12 @@ using namespace osm_auth_ios;
|
|||
|
||||
[[DeepLinkHandler shared] applicationDidFinishLaunching:launchOptions];
|
||||
// application:openUrl:options is called later for deep links if YES is returned.
|
||||
|
||||
dispatch_async(dispatch_get_main_queue(), ^{
|
||||
[self handleNavigationForAppStartup];
|
||||
[self moveToDushanbeIfNotInTjk];
|
||||
});
|
||||
|
||||
return YES;
|
||||
}
|
||||
|
||||
|
@ -211,11 +217,6 @@ using namespace osm_auth_ios;
|
|||
LOG(LINFO, ("applicationDidBecomeActive - begin"));
|
||||
auto & f = GetFramework();
|
||||
|
||||
[self handleNavigationForAppStartup];
|
||||
|
||||
[self moveToDushanbeIfNotInTjk];
|
||||
|
||||
|
||||
f.EnterForeground();
|
||||
[self.mapViewController onGetFocus:YES];
|
||||
f.SetRenderingEnabled();
|
||||
|
|
Loading…
Add table
Reference in a new issue