diff --git a/Shared/SmartFeeds/SearchFeedDelegate.swift b/Shared/SmartFeeds/SearchFeedDelegate.swift index 67fd628c9..2f026d9f8 100644 --- a/Shared/SmartFeeds/SearchFeedDelegate.swift +++ b/Shared/SmartFeeds/SearchFeedDelegate.swift @@ -37,8 +37,8 @@ struct SearchFeedDelegate: SmartFeedDelegate { } func fetchUnreadArticlesBetween(before: Date? = nil, after: Date? = nil) throws -> Set
{ - // TODO FILTER BY SEARCH - return try AccountManager.shared.fetchUnreadArticlesBetween(limit: nil, before: before, after: after) + fatalError("Function not implemented.") } + } diff --git a/Shared/SmartFeeds/SearchTimelineFeedDelegate.swift b/Shared/SmartFeeds/SearchTimelineFeedDelegate.swift index 9e03ffdfb..5ac8e03bc 100644 --- a/Shared/SmartFeeds/SearchTimelineFeedDelegate.swift +++ b/Shared/SmartFeeds/SearchTimelineFeedDelegate.swift @@ -37,7 +37,7 @@ struct SearchTimelineFeedDelegate: SmartFeedDelegate { } func fetchUnreadArticlesBetween(before: Date? = nil, after: Date? = nil) throws -> Set
{ - // TODO FILTER BY SEARCH - return try AccountManager.shared.fetchUnreadArticlesBetween(limit: nil, before: before, after: after) + fatalError("Function not implemented.") } + }