reset text for sms invitation

This commit is contained in:
Danmei Chen 2019-04-13 21:44:38 +02:00
parent 14a75365df
commit 670392f80e
8 changed files with 1 additions and 1 deletions

View file

@ -173,7 +173,7 @@
- (IBAction)onSMSInviteClick:(id)sender {
MFMessageComposeViewController *controller = [[MFMessageComposeViewController alloc] init];
if([MFMessageComposeViewController canSendText]) {
controller.body = NSLocalizedString(@"Hello! Join me on Linphone! You can download it for free at: http://www.linphone.org/technical-corner/linphone/downloads",nil);
controller.body = NSLocalizedString(@"Hello! Join me on Linphone! You can download it for free at: https://www.linphone.org/download",nil);
controller.recipients = [NSArray arrayWithObjects:[self.addressLabel text], nil];
controller.messageComposeDelegate = PhoneMainView.instance;