Skip to content

Commit

Permalink
Fix for options
Browse files Browse the repository at this point in the history
  • Loading branch information
pczarn committed Dec 29, 2021
1 parent ccea006 commit 5c57d55
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions czkawka_core/src/duplicate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,8 @@ impl DuplicateFinder {
.allowed_extensions(self.allowed_extensions.clone())
.excluded_items(self.excluded_items.clone())
.recursive_search(self.recursive_search)
.minimal_file_size(self.minimal_file_size)
.maximal_file_size(self.maximal_file_size)
.build()
.run();
match result {
Expand Down Expand Up @@ -394,6 +396,8 @@ impl DuplicateFinder {
.allowed_extensions(self.allowed_extensions.clone())
.excluded_items(self.excluded_items.clone())
.recursive_search(self.recursive_search)
.minimal_file_size(self.minimal_file_size)
.maximal_file_size(self.maximal_file_size)
.build()
.run();
match result {
Expand Down

0 comments on commit 5c57d55

Please sign in to comment.