From 0e06d476870b18b291833a1b8556fa4e8cf32dd2 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sat, 29 Oct 2022 18:27:24 -0400 Subject: [PATCH] Fix status collapse changes not animating on profiles --- Tusker/Screens/Profile/ProfileStatusesViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tusker/Screens/Profile/ProfileStatusesViewController.swift b/Tusker/Screens/Profile/ProfileStatusesViewController.swift index 455b6cb3..ed593ac5 100644 --- a/Tusker/Screens/Profile/ProfileStatusesViewController.swift +++ b/Tusker/Screens/Profile/ProfileStatusesViewController.swift @@ -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) } } }