From f93cedfca0167bc34ff67195d88e60cfe0ccd928 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 21 Oct 2021 11:55:59 -0500 Subject: [PATCH] Rebuild the backing stores when selecting a different feed and the read feeds filter is enabled --- iOS/SceneCoordinator.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/iOS/SceneCoordinator.swift b/iOS/SceneCoordinator.swift index 0d1852f6a..278cd0cf7 100644 --- a/iOS/SceneCoordinator.swift +++ b/iOS/SceneCoordinator.swift @@ -816,6 +816,9 @@ class SceneCoordinator: NSObject, UndoableCommandRunner { self.activityManager.selecting(feed: feed) self.installTimelineControllerIfNecessary(animated: animations.contains(.navigation)) setTimelineFeed(feed, animated: false) { + if self.isReadFeedsFiltered { + self.rebuildBackingStores() + } completion?() }