diff --git a/APCAppCore/APCAppCore/UI/Onboarding/APCStudyOverviewCollectionViewController.m b/APCAppCore/APCAppCore/UI/Onboarding/APCStudyOverviewCollectionViewController.m index 553eec4e..afcc1399 100644 --- a/APCAppCore/APCAppCore/UI/Onboarding/APCStudyOverviewCollectionViewController.m +++ b/APCAppCore/APCAppCore/UI/Onboarding/APCStudyOverviewCollectionViewController.m @@ -238,8 +238,7 @@ - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cell NSString *filePath = [[NSBundle mainBundle] pathForResource: studyDetails.detailText ofType:@"html" inDirectory:@"HTMLContent"]; NSAssert(filePath, @"Expecting file \"%@.html\" to be present in the \"HTMLContent\" directory, but didn't find it", studyDetails.detailText); - NSString *encodingFilePath = [filePath stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; - NSURL *targetURL = [NSURL URLWithString:encodingFilePath]; + NSURL *targetURL = [NSURL URLWithString:filePath]; NSURLRequest *request = [NSURLRequest requestWithURL:targetURL]; [webViewCell.webView loadRequest:request];