diff --git a/Tusker/Screens/Profile/ProfileStatusesViewController.swift b/Tusker/Screens/Profile/ProfileStatusesViewController.swift index 7f9b26e2..497204d8 100644 --- a/Tusker/Screens/Profile/ProfileStatusesViewController.swift +++ b/Tusker/Screens/Profile/ProfileStatusesViewController.swift @@ -92,7 +92,7 @@ class ProfileStatusesViewController: DiffableTimelineLikeTableViewController Bool { - return lhs.id == rhs.id + return lhs.id == rhs.id && lhs.pinned == rhs.pinned } func hash(into hasher: inout Hasher) { hasher.combine(id) + hasher.combine(pinned) } } }