forked from organicmaps/organicmaps
[iOS] MyPosition by email without name.
This commit is contained in:
parent
4d01357109
commit
9e9fbd9e98
1 changed files with 4 additions and 1 deletions
|
@ -284,7 +284,10 @@
|
|||
UITextField * textF = (UITextField *)[cell viewWithTag:TEXTFIELD_TAG];
|
||||
if ([[actionSheet buttonTitleAtIndex:buttonIndex] isEqualToString:NSLocalizedString(@"email", nil)])
|
||||
{
|
||||
NSString * shortUrl = [self generateShortUrlwithName:textF.text];
|
||||
// Not really beutiful now, but ...
|
||||
Boolean isMyPosition = [textF.text isEqualToString:NSLocalizedString(@"my_position", nil)];
|
||||
NSString * shortUrl = [self generateShortUrlwithName:isMyPosition ? @"" : textF.text];
|
||||
|
||||
[self sendEmailWith:textF.text andUrl:shortUrl];
|
||||
}
|
||||
else if ([[actionSheet buttonTitleAtIndex:buttonIndex] isEqualToString:NSLocalizedString(@"message", nil)])
|
||||
|
|
Loading…
Add table
Reference in a new issue