Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-05-16 18:37:20 +0300
committerGitHub <noreply@github.com>2017-05-16 18:37:20 +0300
commit764d221d2318f2a25570425564cbf8258679e8ac (patch)
tree766c37122d051cb22e9c07db5fb9de5134f53cbf
parent67ad989cc7d7f2f1f449e5b9cd2d0ce5d93faa6f (diff)
parentd87672f28a611e94022fa4fa79a9a335374e5b32 (diff)
Merge pull request #6070 from VladiMihaylenko/vm-masterios-store-7.3.0
[ios] fixed wrong bookmark category name
-rw-r--r--iphone/Maps/Bookmarks/AddSetVC.mm4
1 files changed, 1 insertions, 3 deletions
diff --git a/iphone/Maps/Bookmarks/AddSetVC.mm b/iphone/Maps/Bookmarks/AddSetVC.mm
index baffbfb72c..794bf70c05 100644
--- a/iphone/Maps/Bookmarks/AddSetVC.mm
+++ b/iphone/Maps/Bookmarks/AddSetVC.mm
@@ -30,9 +30,7 @@
- (void)onSaveClicked
{
- auto text = self.cell.textField.text;
- auto data = [text dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
- [self onDone:[[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding]];
+ [self onDone:self.cell.textField.text];
}
- (void)onDone:(NSString *)text