Skip to content

Commit 455bb55

Browse files
committed
fix
1 parent 1671758 commit 455bb55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/FileManagement/DirectoryScanner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class DirectoryScanner implements IDirectoryScanner {
1818
}
1919
}
2020

21-
private get DEFAULT_OPTIONS(): TreeOptions {
21+
private get defaultOptions(): TreeOptions {
2222
const config = this.configService.getConfig();
2323
return {
2424
ignore: config.directoryScanner.defaultIgnore,
@@ -71,7 +71,7 @@ export class DirectoryScanner implements IDirectoryScanner {
7171
options: Partial<TreeOptions> = {},
7272
): Promise<IFileOperationResult> {
7373
try {
74-
const defaultOptions = this.DEFAULT_OPTIONS;
74+
const defaultOptions = this.defaultOptions;
7575
const scanOptions = { ...defaultOptions, ...options };
7676
const ignore = [
7777
...this.REQUIRED_IGNORE,

0 commit comments

Comments
 (0)