From bb038e043b813cac70239908e9eda89eee4c8083 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Wed, 7 Sep 2022 17:01:11 +0530 Subject: [PATCH 1/2] Fix stupid bug: continue instead of break --- lib/services/remote_sync_service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/remote_sync_service.dart b/lib/services/remote_sync_service.dart index 944340645..a6f9bb2e5 100644 --- a/lib/services/remote_sync_service.dart +++ b/lib/services/remote_sync_service.dart @@ -431,7 +431,7 @@ class RemoteSyncService { } toBeInserted.add(remoteDiff); // end processing for file here, move to next file now - break; + continue; } // If remoteDiff is not already synced (i.e. existingFile is null), check From 5b76113d83ce72c89ffba58ebfaafde9e573e6d7 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Wed, 7 Sep 2022 17:01:34 +0530 Subject: [PATCH 2/2] bump version code to 0.6.31+361 --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 035e9b120..1e799ab5a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -11,7 +11,7 @@ description: ente photos application # 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: 0.6.30+360 +version: 0.6.31+361 environment: sdk: ">=2.10.0 <3.0.0"