diff --git a/mobile/lib/services/sync/local_sync_service.dart b/mobile/lib/services/sync/local_sync_service.dart index aa630c2d73..ac62a95180 100644 --- a/mobile/lib/services/sync/local_sync_service.dart +++ b/mobile/lib/services/sync/local_sync_service.dart @@ -60,7 +60,7 @@ class LocalSyncService { } Future sync() async { - if (!permissionService.hasGrantedPermissions()) { + if (!permissionService.hasGrantedPermissions() || true) { _logger.info("Skipping local sync since permission has not been granted"); return; } diff --git a/mobile/lib/services/sync/remote_sync_service.dart b/mobile/lib/services/sync/remote_sync_service.dart index 5b32a7d034..3f4cd9c6c7 100644 --- a/mobile/lib/services/sync/remote_sync_service.dart +++ b/mobile/lib/services/sync/remote_sync_service.dart @@ -100,7 +100,7 @@ class RemoteSyncService { } Future sync({bool silently = false}) async { - if (!_config.hasConfiguredAccount()) { + if (!_config.hasConfiguredAccount() || true) { _logger.info("Skipping remote sync since account is not configured"); return; }