Open link preview URLs when tapped.

pull/1/head
Matthew Chen 6 years ago
parent 00f0d44903
commit 8452f5e74b

@ -2342,7 +2342,13 @@ typedef enum : NSUInteger {
{ {
OWSAssertIsOnMainThread(); OWSAssertIsOnMainThread();
// TODO: NSURL *_Nullable url = [NSURL URLWithString:linkPreview.urlString];
if (!url) {
OWSFailDebug(@"Invalid link preview URL.");
return;
}
[UIApplication.sharedApplication openURL:url];
} }
- (void)showDetailViewForViewItem:(id<ConversationViewItem>)conversationItem - (void)showDetailViewForViewItem:(id<ConversationViewItem>)conversationItem

Loading…
Cancel
Save