From c746507cc4aac851db68f6443802b3b270d3a4fe Mon Sep 17 00:00:00 2001 From: shannon Date: Mon, 24 Mar 2025 10:48:14 -0400 Subject: [PATCH] Remove unreachable error handler --- .../GroupedNotificationFeedLoader.swift | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Mastodon/In Progress New Layout and Datamodel/GroupedNotificationFeedLoader.swift b/Mastodon/In Progress New Layout and Datamodel/GroupedNotificationFeedLoader.swift index bf566d0b6..e240c59be 100644 --- a/Mastodon/In Progress New Layout and Datamodel/GroupedNotificationFeedLoader.swift +++ b/Mastodon/In Progress New Layout and Datamodel/GroupedNotificationFeedLoader.swift @@ -128,11 +128,7 @@ final public class GroupedNotificationFeedLoader { } } catch { } - do { - await asyncLoadMore(olderThan: nil, newerThan: records.allRecords.first?.newestID) - } catch { - presentError?(error) - } + await asyncLoadMore(olderThan: nil, newerThan: records.allRecords.first?.newestID) } }