chore: full local sync only for Android

pull/23815/head
Alex 2025-11-11 15:22:07 -06:00
parent e8e9e7830e
commit a147d9c9c0
No known key found for this signature in database
GPG Key ID: 53CD082B3A5E1082
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import 'dart:async';
import 'dart:io';
import 'package:auto_route/auto_route.dart';
import 'package:flutter/material.dart';
@ -65,7 +66,7 @@ class SplashScreenPageState extends ConsumerState<SplashScreenPage> {
if (Store.isBetaTimelineEnabled) {
bool syncSuccess = false;
await Future.wait([
backgroundManager.syncLocal(full: true),
backgroundManager.syncLocal(full: Platform.isAndroid ? true : false),
backgroundManager.syncRemote().then((success) => syncSuccess = success),
]);