Fix status collapse changes not animating on profiles

This commit is contained in:
Shadowfacts 2022-10-29 18:27:24 -04:00
parent c907b7257a
commit 0e06d47687
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ extension ProfileStatusesViewController: StatusCollectionViewCellDelegate {
if let indexPath = collectionView.indexPath(for: cell) {
var snapshot = dataSource.snapshot()
snapshot.reconfigureItems([dataSource.itemIdentifier(for: indexPath)!])
dataSource.apply(snapshot, animatingDifferences: false, completion: completion)
dataSource.apply(snapshot, animatingDifferences: animated, completion: completion)
}
}
}