diff --git a/android/fastlane/metadata/android/en-US/changelogs/150.txt b/android/fastlane/metadata/android/en-US/changelogs/150.txt new file mode 100644 index 0000000000..98cbdf1a2f --- /dev/null +++ b/android/fastlane/metadata/android/en-US/changelogs/150.txt @@ -0,0 +1 @@ + - Improved upload flow styling diff --git a/lib/sync/domain/repositories/sync_repository.dart b/lib/sync/domain/repositories/sync_repository.dart index 1c95b81305..76a0c67e72 100644 --- a/lib/sync/domain/repositories/sync_repository.dart +++ b/lib/sync/domain/repositories/sync_repository.dart @@ -261,8 +261,9 @@ class _SyncRepository implements SyncRepository { .where((file) => metadataTxsFromSnapshots.contains(file.metadataTxId)) .map((file) => file.dataTxId) .toList(); - await _arnsRepository.waitForARNSRecordsToUpdate(); - await _arnsRepository.saveAllFilesWithAssignedNames(); + _arnsRepository + .waitForARNSRecordsToUpdate() + .then((value) => _arnsRepository.saveAllFilesWithAssignedNames()); await Future.wait( [ diff --git a/pubspec.yaml b/pubspec.yaml index e272479beb..e847326136 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: Secure, permanent storage publish_to: 'none' -version: 2.53.0 +version: 2.54.0 environment: sdk: '>=3.2.0 <4.0.0'