Removed unnecessary reloads that were crashing. Issue #1672

This commit is contained in:
Maurice Parker 2020-01-25 15:51:34 -07:00
parent 51e3b0d64d
commit b62f80e0ea
1 changed files with 2 additions and 6 deletions

View File

@ -867,9 +867,7 @@ private extension MasterFeedViewController {
return
}
coordinator.expand(node)
applyChanges(animated: true) { [weak self] in
self?.reloadNode(node)
}
applyChanges(animated: true)
}
func collapse(_ cell: MasterFeedTableViewCell) {
@ -877,9 +875,7 @@ private extension MasterFeedViewController {
return
}
coordinator.collapse(node)
applyChanges(animated: true) { [weak self] in
self?.reloadNode(node)
}
applyChanges(animated: true)
}
func makeFeedContextMenu(node: Node, indexPath: IndexPath, includeDeleteRename: Bool) -> UIContextMenuConfiguration {