diff --git a/Shared/UserNotifications/UserNotificationManager.swift b/Shared/UserNotifications/UserNotificationManager.swift index 5ecf2f9b7..5857b1abe 100644 --- a/Shared/UserNotifications/UserNotificationManager.swift +++ b/Shared/UserNotifications/UserNotificationManager.swift @@ -24,7 +24,7 @@ final class UserNotificationManager: NSObject { } for article in articles { - if let feed = article.feed, feed.isNotifyAboutNewArticles ?? false { + if !article.status.read, let feed = article.feed, feed.isNotifyAboutNewArticles ?? false { sendNotification(feed: feed, article: article) } }