Skip to content

Commit 1fab979

Browse files
committed
Fix error i left behind
1 parent 75651ab commit 1fab979

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • File-Integrity-Scanner/src/main/java/org/pwss/file_integrity_scanner/msr/service/scan

File-Integrity-Scanner/src/main/java/org/pwss/file_integrity_scanner/msr/service/scan/ScanServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public void scanAllDirectories() {
111111
// If scan should include monitored directory subdirectories
112112
if (dir.getIncludeSubdirectories()) {
113113
// Add the scan to active tasks for monitoring
114-
Future<List<File>> futureFiles = scanDirectoryAsync(dir.getPath(), true);
114+
Future<List<File>> futureFiles = scanDirectoryAsync(dir.getPath());
115115
activeScanTasks.put(dir.getPath(), new ScanTaskState(futureFiles, scan));
116116
} else { // If not, scan only the top-level files
117117
// TODO: Handle non subdirectory scans in a nice manner :D

0 commit comments

Comments
 (0)