[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:
mamadnazar 2025-03-06 19:55:08 +05:00
parent 3d9ebab8c2
commit e0d98091ed

View file

@ -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();