mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-24 00:30:51 +01:00
Change so that we don't validate and change unread counts for unread limit queries
This commit is contained in:
parent
34de76009b
commit
b5eff641d0
@ -1157,7 +1157,13 @@ private extension Account {
|
|||||||
func fetchUnreadArticles(forContainer container: Container, limit: Int?) throws -> Set<Article> {
|
func fetchUnreadArticles(forContainer container: Container, limit: Int?) throws -> Set<Article> {
|
||||||
let feeds = container.flattenedWebFeeds()
|
let feeds = container.flattenedWebFeeds()
|
||||||
let articles = try database.fetchUnreadArticles(feeds.webFeedIDs(), limit)
|
let articles = try database.fetchUnreadArticles(feeds.webFeedIDs(), limit)
|
||||||
validateUnreadCountsAfterFetchingUnreadArticles(feeds, articles)
|
|
||||||
|
// We don't validate limit queries because they, by definition, won't correctly match the
|
||||||
|
// complete unread state for the given container.
|
||||||
|
if limit == nil {
|
||||||
|
validateUnreadCountsAfterFetchingUnreadArticles(feeds, articles)
|
||||||
|
}
|
||||||
|
|
||||||
return articles
|
return articles
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1166,7 +1172,13 @@ private extension Account {
|
|||||||
database.fetchUnreadArticlesAsync(webFeeds.webFeedIDs(), limit) { [weak self] (articleSetResult) in
|
database.fetchUnreadArticlesAsync(webFeeds.webFeedIDs(), limit) { [weak self] (articleSetResult) in
|
||||||
switch articleSetResult {
|
switch articleSetResult {
|
||||||
case .success(let articles):
|
case .success(let articles):
|
||||||
self?.validateUnreadCountsAfterFetchingUnreadArticles(webFeeds, articles)
|
|
||||||
|
// We don't validate limit queries because they, by definition, won't correctly match the
|
||||||
|
// complete unread state for the given container.
|
||||||
|
if limit == nil {
|
||||||
|
self?.validateUnreadCountsAfterFetchingUnreadArticles(webFeeds, articles)
|
||||||
|
}
|
||||||
|
|
||||||
completion(.success(articles))
|
completion(.success(articles))
|
||||||
case .failure(let databaseError):
|
case .failure(let databaseError):
|
||||||
completion(.failure(databaseError))
|
completion(.failure(databaseError))
|
||||||
|
Loading…
Reference in New Issue
Block a user