Skip to content

Commit

Permalink
#817 (three column layout)
Browse files Browse the repository at this point in the history
- Fixed not showing feed detail content for feed when first launched on iPhone.
  • Loading branch information
Dejal committed Feb 28, 2021
1 parent 77ab115 commit 6ce1a24
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion clients/ios/Classes/NewsBlurAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,11 @@ - (void)loadFeedDetailView:(BOOL)transition {
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];

Expand Down

0 comments on commit 6ce1a24

Please sign in to comment.