From 25fb43bbe3b0c49ec6dbbdc8883be21fdfaedbc1 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 5 Nov 2025 08:09:50 -0600 Subject: [PATCH] fix: fully sync local library on app restart (#23323) --- mobile/lib/pages/common/splash_screen.page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/pages/common/splash_screen.page.dart b/mobile/lib/pages/common/splash_screen.page.dart index c1d621f474..79db33104d 100644 --- a/mobile/lib/pages/common/splash_screen.page.dart +++ b/mobile/lib/pages/common/splash_screen.page.dart @@ -65,7 +65,7 @@ class SplashScreenPageState extends ConsumerState { if (Store.isBetaTimelineEnabled) { bool syncSuccess = false; await Future.wait([ - backgroundManager.syncLocal(), + backgroundManager.syncLocal(full: true), backgroundManager.syncRemote().then((success) => syncSuccess = success), ]);