From 6ce1a240603765398cc1a44f7e636f68ddffca9c Mon Sep 17 00:00:00 2001 From: David Sinclair Date: Sat, 27 Feb 2021 21:10:38 -0800 Subject: [PATCH] #817 (three column layout) - Fixed not showing feed detail content for feed when first launched on iPhone. --- clients/ios/Classes/NewsBlurAppDelegate.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/clients/ios/Classes/NewsBlurAppDelegate.m b/clients/ios/Classes/NewsBlurAppDelegate.m index bfdb77734..e44ceb07e 100644 --- a/clients/ios/Classes/NewsBlurAppDelegate.m +++ b/clients/ios/Classes/NewsBlurAppDelegate.m @@ -1521,7 +1521,11 @@ detailViewController.navigationItem.titleView = [self makeFeedTitle:storiesCollection.activeFeed]; [self.feedDetailViewController checkScroll]; - [self.storyPagesViewController refreshPages]; + + if ([[UIDevice currentDevice] userInterfaceIdiom] != UIUserInterfaceIdiomPhone) { + [self.storyPagesViewController refreshPages]; + } + [self adjustStoryDetailWebView]; [self.feedDetailViewController.storyTitlesTable reloadData];