Skip to content

Commit

Permalink
Merge pull request #379 from ardriveapp/dev
Browse files Browse the repository at this point in the history
Release 1.7.3
  • Loading branch information
agsuy authored Mar 4, 2022
2 parents 22d15b1 + 0b0f990 commit 08b14d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions lib/blocs/sync/sync_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,10 @@ class SyncCubit extends Cubit<SyncState> {
<DriveID, Map<FolderID, FolderEntriesCompanion>>{};

Future<void> startSync() async {
if (state is SyncInProgress) {
return;
}

try {
final profile = _profileCubit.state;
String? ownerAddress;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<script defer src="avsc.min.js"></script>
<script defer src="js/tagparser.js"></script>
<script defer src="sql-wasm.js"></script>
<script src="main.dart.js?version=55" type="application/javascript"></script>
<script src="main.dart.js?version=56" type="application/javascript"></script>

</body>

Expand Down

0 comments on commit 08b14d7

Please sign in to comment.