mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: The symbolic link to the directory appears twice during synchronization (fixes #1053)
(cherry picked from commit dd927285d0)
This commit is contained in:
parent
14417cce28
commit
e78fe3df19
1 changed files with 1 additions and 1 deletions
|
|
@ -1258,7 +1258,7 @@ var
|
|||
for i := 0 to fs.Count - 1 do
|
||||
begin
|
||||
f := fs.Items[i];
|
||||
if f.IsDirectory then
|
||||
if f.IsDirectory or f.IsLinkToDirectory then
|
||||
begin
|
||||
if (f.NameNoExt <> '.') and (f.NameNoExt <> '..') then
|
||||
dirs.Add(f.Name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue