diff --git a/WordPress/Classes/ViewRelated/Reader/Detail/Views/ReaderDetailCommentsTableViewDelegate.swift b/WordPress/Classes/ViewRelated/Reader/Detail/Views/ReaderDetailCommentsTableViewDelegate.swift index 362e679b03b8..35f299027706 100644 --- a/WordPress/Classes/ViewRelated/Reader/Detail/Views/ReaderDetailCommentsTableViewDelegate.swift +++ b/WordPress/Classes/ViewRelated/Reader/Detail/Views/ReaderDetailCommentsTableViewDelegate.swift @@ -83,7 +83,9 @@ class ReaderDetailCommentsTableViewDelegate: NSObject, UITableViewDataSource, UI } cell.configureForPostDetails(with: comment) { _ in - tableView.performBatchUpdates({}) + try? WPException.objcTry { + tableView.performBatchUpdates({}) + } } return cell