Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
Test equal for recurse filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Jul 3, 2023
1 parent 5cc3fc9 commit e96f5b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/toolbox/dir_walk.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ static DirWalkResult

bool filter = false;
for(size_t i = 0; i < dir_walk->recurse_filter_count; i++) {
if(furi_string_start_with_str(dir_walk->path, dir_walk->recurse_filter[i])) {
if(furi_string_equal_str(dir_walk->path, dir_walk->recurse_filter[i])) {
filter = true;
break;
}
Expand Down

0 comments on commit e96f5b5

Please sign in to comment.