Skip to content

Commit

Permalink
Fix crash in ReaderDetailCommentsTableViewDelegate
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Aug 1, 2023
1 parent 1396efe commit 059c892
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ class ReaderDetailCommentsTableViewDelegate: NSObject, UITableViewDataSource, UI
}

cell.configureForPostDetails(with: comment) { _ in
tableView.performBatchUpdates({})
try? WPException.objcTry {
tableView.performBatchUpdates({})
}
}

return cell
Expand Down

0 comments on commit 059c892

Please sign in to comment.