diff --git a/Tusker/Screens/Notifications/NotificationsCollectionViewController.swift b/Tusker/Screens/Notifications/NotificationsCollectionViewController.swift index de95da97..b5c77334 100644 --- a/Tusker/Screens/Notifications/NotificationsCollectionViewController.swift +++ b/Tusker/Screens/Notifications/NotificationsCollectionViewController.swift @@ -404,7 +404,7 @@ extension NotificationsCollectionViewController { private func validateNotifications(_ notifications: [Pachyderm.Notification]) -> [Pachyderm.Notification] { return notifications.compactMap { notif in - if notif.status == nil && (notif.kind == .mention || notif.kind == .reblog || notif.kind == .favourite) { + if notif.status == nil && (notif.kind == .mention || notif.kind == .reblog || notif.kind == .favourite || notif.kind == .status) { let crumb = Breadcrumb(level: .fatal, category: "notifications") crumb.data = [ "id": notif.id,