Modular integrations Manager: Open URL in safari not within the webview

This commit is contained in:
manuroe
2017-09-19 09:00:44 +02:00
parent 568681fa23
commit f3ff3baff3
@@ -188,6 +188,14 @@ NSString *const kJavascriptSendResponseToModular = @"riotIOS.sendResponse('%@',
return NO;
}
if (navigationType == UIWebViewNavigationTypeLinkClicked )
{
// Open links outside the app
[[UIApplication sharedApplication] openURL:[request URL]];
return NO;
}
return YES;
}