diff --git a/Tusker/Screens/Notifications/NotificationsTableViewController.swift b/Tusker/Screens/Notifications/NotificationsTableViewController.swift index f7fbe1d3..81564d43 100644 --- a/Tusker/Screens/Notifications/NotificationsTableViewController.swift +++ b/Tusker/Screens/Notifications/NotificationsTableViewController.swift @@ -112,12 +112,12 @@ class NotificationsTableViewController: DiffableTimelineLikeTableViewController< case let .failure(error): completion(.failure(.client(error))) - case let .success(notifications, pagination): + case let .success(notifications, _): let groups = NotificationGroup.createGroups(notifications: notifications, only: self.groupTypes) if !notifications.isEmpty { - self.newer = pagination?.newer ?? .after(id: notifications.first!.id, count: nil) - self.older = pagination?.older ?? .before(id: notifications.last!.id, count: nil) + self.newer = .after(id: notifications.first!.id, count: nil) + self.older = .before(id: notifications.last!.id, count: nil) } self.mastodonController.persistentContainer.addAll(notifications: notifications) { @@ -142,9 +142,9 @@ class NotificationsTableViewController: DiffableTimelineLikeTableViewController< case let .failure(error): completion(.failure(.client(error))) - case let .success(newNotifications, pagination): + case let .success(newNotifications, _): if !newNotifications.isEmpty { - self.older = pagination?.older ?? .before(id: newNotifications.last!.id, count: nil) + self.older = .before(id: newNotifications.last!.id, count: nil) } let olderGroups = NotificationGroup.createGroups(notifications: newNotifications, only: self.groupTypes) @@ -173,13 +173,13 @@ class NotificationsTableViewController: DiffableTimelineLikeTableViewController< case let .failure(error): completion(.failure(.client(error))) - case let .success(newNotifications, pagination): + case let .success(newNotifications, _): guard !newNotifications.isEmpty else { completion(.failure(.allCaughtUp)) return } - self.newer = pagination?.newer ?? .after(id: newNotifications.first!.id, count: nil) + self.newer = .after(id: newNotifications.first!.id, count: nil) let newerGroups = NotificationGroup.createGroups(notifications: newNotifications, only: self.groupTypes) diff --git a/Tusker/Screens/Profile/ProfileStatusesViewController.swift b/Tusker/Screens/Profile/ProfileStatusesViewController.swift index 23ee8119..d5df51e4 100644 --- a/Tusker/Screens/Profile/ProfileStatusesViewController.swift +++ b/Tusker/Screens/Profile/ProfileStatusesViewController.swift @@ -88,10 +88,10 @@ class ProfileStatusesViewController: DiffableTimelineLikeTableViewController