From 0709b006f43b15b054626490839b96edd8495340 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sun, 22 Sep 2019 21:42:49 -0500 Subject: [PATCH] Add feed meta data did change notification --- Frameworks/Account/Account.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Frameworks/Account/Account.swift b/Frameworks/Account/Account.swift index 09eacbf82..bc10ad7ee 100644 --- a/Frameworks/Account/Account.swift +++ b/Frameworks/Account/Account.swift @@ -406,6 +406,7 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container, for feed in flattenedFeeds() { feed.metadata = feedMetadata(feedURL: feed.url, feedID: feed.feedID) } + NotificationCenter.default.post(name: .FeedMetadataDidChange, object: self, userInfo: nil) } public func markArticles(_ articles: Set
, statusKey: ArticleStatus.Key, flag: Bool) -> Set
? {