From 5c8927e639cf23c0d469246f0bde365f47194d9a Mon Sep 17 00:00:00 2001 From: VladiMihaylenko Date: Fri, 7 Apr 2017 14:25:06 +0300 Subject: [PATCH] [ios] Fixed 4167 --- iphone/Maps/UI/Editor/MWMEditorViewController.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iphone/Maps/UI/Editor/MWMEditorViewController.mm b/iphone/Maps/UI/Editor/MWMEditorViewController.mm index d0dcd19b88..546a1a5189 100644 --- a/iphone/Maps/UI/Editor/MWMEditorViewController.mm +++ b/iphone/Maps/UI/Editor/MWMEditorViewController.mm @@ -1089,13 +1089,13 @@ void registerCellsForTableView(vector const & cells, UITab if ([ud boolForKey:kUDEditorPersonalInfoWarninWasShown]) return NO; - [ud setBool:YES forKey:kUDEditorPersonalInfoWarninWasShown]; - [ud synchronize]; - [self.alertController presentPersonalInfoWarningAlertWithBlock:^ { + [ud setBool:YES forKey:kUDEditorPersonalInfoWarninWasShown]; + [ud synchronize]; [self onSave]; }]; + return YES; }