diff --git a/Frameworks/ArticlesDatabase/ArticlesTable.swift b/Frameworks/ArticlesDatabase/ArticlesTable.swift index c666a3f06..4d8d565b7 100644 --- a/Frameworks/ArticlesDatabase/ArticlesTable.swift +++ b/Frameworks/ArticlesDatabase/ArticlesTable.swift @@ -329,7 +329,7 @@ final class ArticlesTable: DatabaseTable { func fetchUnreadCount(_ webFeedIDs: Set, _ since: Date, _ callback: @escaping (Int) -> Void) { // Get unread count for today, for instance. - if webFeedIDs.isEmpty { + if webFeedIDs.isEmpty || queue.isSuspended { callback(0) return }