share symlinked folders correctly

auto-update
Zlatin Balevsky 2021-10-22 22:58:23 +01:00
parent 905c8e6bb3
commit 6814e715ec
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class HasherService {
} else if (hashed.add(evt.file)) {
File canonical = evt.file.getCanonicalFile()
if (canonical.isDirectory())
executor.execute({processDirectory(canonical)} as Runnable)
executor.execute({processDirectory(evt.file)} as Runnable)
else
throttlerExecutor.execute({ throttle(evt.file, canonical) } as Runnable)
}