From d56893bfd34b0c586fb86a3f38ce22ffde10b272 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 3 Oct 2025 08:27:28 -0500 Subject: [PATCH] fix: mitigate database lock scenario when running full sync in splash screen page (#22608) --- 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 5147ba8f45..3b81368cd4 100644 --- a/mobile/lib/pages/common/splash_screen.page.dart +++ b/mobile/lib/pages/common/splash_screen.page.dart @@ -64,7 +64,7 @@ class SplashScreenPageState extends ConsumerState { if (Store.isBetaTimelineEnabled) { bool syncSuccess = false; await Future.wait([ - backgroundManager.syncLocal(full: true), + backgroundManager.syncLocal(), backgroundManager.syncRemote().then((success) => syncSuccess = success), ]);