fix: respect filter in find() options
This commit is contained in:
parent
b3248ae431
commit
6746594497
2 changed files with 2 additions and 2 deletions
|
|
@ -122,7 +122,7 @@ export class FSDB_INDEXER_SYMLINKS<T> implements FSDB_INDEXER<T> {
|
|||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
return options?.filter ? options?.filter(entry) : true;
|
||||
},
|
||||
sort: options?.sort
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue