diff --git a/lib/blocs/sync/sync_cubit.dart b/lib/blocs/sync/sync_cubit.dart index d871080b78..bc21c302b8 100644 --- a/lib/blocs/sync/sync_cubit.dart +++ b/lib/blocs/sync/sync_cubit.dart @@ -115,6 +115,10 @@ class SyncCubit extends Cubit { >{}; Future startSync() async { + if (state is SyncInProgress) { + return; + } + try { final profile = _profileCubit.state; String? ownerAddress; diff --git a/pubspec.yaml b/pubspec.yaml index 6b69b5b452..3f4197a691 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -13,7 +13,7 @@ publish_to: 'none' # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.7.2 +version: 1.7.3 environment: sdk: '>=2.13.0 <3.0.0' diff --git a/web/index.html b/web/index.html index e9ff126e46..80efcf32ab 100644 --- a/web/index.html +++ b/web/index.html @@ -37,7 +37,7 @@ - +