From 4efd3e53df87c01c7c5b420c3cef182b06f7c95b Mon Sep 17 00:00:00 2001 From: Alban Diquet Date: Mon, 1 Aug 2016 12:38:13 -0700 Subject: [PATCH] Switch baseURL to about:blank --- Classes/BITWebTableViewCell.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/BITWebTableViewCell.m b/Classes/BITWebTableViewCell.m index e03eac5411..6151cdc59e 100644 --- a/Classes/BITWebTableViewCell.m +++ b/Classes/BITWebTableViewCell.m @@ -88,7 +88,7 @@ body { font: 13px 'Helvetica Neue', Helvetica; color:#626262; word-wrap:break-wo //HockeySDKLog(@"%@\n%@\%@", PSWebTableViewCellHtmlTemplate, deviceWidth, self.webViewContent); NSString *contentHtml = [NSString stringWithFormat:BITWebTableViewCellHtmlTemplate, deviceWidth, self.webViewContent]; - [_webView loadHTMLString:contentHtml baseURL:nil]; + [_webView loadHTMLString:contentHtml baseURL:[NSURL URLWithString:@"about:blank"]]; } }