diff --git a/Frameworks/Account/Account.swift b/Frameworks/Account/Account.swift index a70e6873e..70e234ed9 100644 --- a/Frameworks/Account/Account.swift +++ b/Frameworks/Account/Account.swift @@ -524,10 +524,7 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container, } @objc func unreadCountDidChange(_ note: Notification) { - - // Update the unread count if it’s a direct child. - - if let object = note.object, objectIsChild(object as AnyObject) { + if let feed = note.object as? Feed, feed.account === self { updateUnreadCount() } }