Normalize conversation presentation logic.

// FREEBIE
pull/1/head
Matthew Chen 8 years ago
parent 04d452b074
commit e222b9df68

@ -555,11 +555,12 @@ static NSString *const kURLHostVerifyPrefix = @"verify";
handler:^(UIAlertAction *_Nonnull action){
}]];
[[Environment getCurrent].homeViewController.presentedViewController presentViewController:controller
animated:YES
completion:^{
completionHandler(NO);
}];
UIViewController *fromViewController = [[UIApplication sharedApplication] frontmostViewController];
[fromViewController presentViewController:controller
animated:YES
completion:^{
completionHandler(NO);
}];
}
}

Loading…
Cancel
Save