From da1b7a6c7b1691374d2a65c70ad8c9fd96cc84bc Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 21 Oct 2017 16:06:25 -0700 Subject: [PATCH] Post children-did-change notification after adding a feed. --- Frameworks/Account/Account.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Frameworks/Account/Account.swift b/Frameworks/Account/Account.swift index aedc02b53..a9c97d779 100644 --- a/Frameworks/Account/Account.swift +++ b/Frameworks/Account/Account.swift @@ -220,6 +220,8 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container, else { if !topLevelObjectsContainsFeed(uniquedFeed) { children += [uniquedFeed] + dirty = true + postChildrenDidChangeNotification() } didAddFeed = true }