From b27be9c8ea7eb7f9f79e872271f2f871ed7913d7 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Tue, 15 Jun 2021 16:35:29 -0500 Subject: [PATCH] Don't animate the Feeds rebuild when responding to the initial unread count initialization. Fixes #2985 --- iOS/SceneCoordinator.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/SceneCoordinator.swift b/iOS/SceneCoordinator.swift index edb8f31e3..7bc4b4037 100644 --- a/iOS/SceneCoordinator.swift +++ b/iOS/SceneCoordinator.swift @@ -436,7 +436,7 @@ class SceneCoordinator: NSObject, UndoableCommandRunner, UnreadCountProvider { guard notification.object is AccountManager else { return } - rebuildBackingStores() + rebuildBackingStores(initialLoad: true) treeControllerDelegate.resetFilterExceptions() }