Skip to content

Commit

Permalink
Merge pull request #527 from ardriveapp/PE-1623
Browse files Browse the repository at this point in the history
hotfix(conflicting files): Skip conflict files and also remove big files
  • Loading branch information
thiagocarvalhodev authored May 26, 2022
2 parents 854285b + 680ff64 commit 5c2a38d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion lib/blocs/upload/upload_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,9 @@ class UploadCubit extends Cubit<UploadState> {

if (uploadAction == UploadActions.Skip) {
_removeFilesWithFileNameConflicts();
} else if (uploadAction == UploadActions.SkipBigFiles) {
}

if (uploadAction == UploadActions.SkipBigFiles) {
_removeBigFiles();
} else {
final tooLargeFiles = [
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.19.0
version: 1.19.1

environment:
sdk: '>=2.13.0 <3.0.0'
Expand Down

0 comments on commit 5c2a38d

Please sign in to comment.