diff --git a/iOS/MasterFeed/MasterFeedViewController.swift b/iOS/MasterFeed/MasterFeedViewController.swift index a47e46cda..6b6da7579 100644 --- a/iOS/MasterFeed/MasterFeedViewController.swift +++ b/iOS/MasterFeed/MasterFeedViewController.swift @@ -530,7 +530,9 @@ class MasterFeedViewController: UITableViewController, UndoableCommandRunner, Ma func updateFeedSelection(animations: Animations) { if let indexPath = coordinator.currentFeedIndexPath { - tableView.selectRowAndScrollIfNotVisible(at: indexPath, animations: animations) + if indexPath != tableView.indexPathForSelectedRow { + tableView.selectRowAndScrollIfNotVisible(at: indexPath, animations: animations) + } } else { if let indexPath = tableView.indexPathForSelectedRow { if animations.contains(.select) {