fix: fully sync local library on app restart (#23323)

This commit is contained in:
Alex
2025-11-05 08:09:50 -06:00
committed by GitHub
parent 125e8cee01
commit 25fb43bbe3

View File

@@ -65,7 +65,7 @@ class SplashScreenPageState extends ConsumerState<SplashScreenPage> {
if (Store.isBetaTimelineEnabled) {
bool syncSuccess = false;
await Future.wait([
backgroundManager.syncLocal(),
backgroundManager.syncLocal(full: true),
backgroundManager.syncRemote().then((success) => syncSuccess = success),
]);