mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Open samba share using GIO
This commit is contained in:
parent
18458186dc
commit
f2e784d8eb
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ begin
|
|||
// Get a file's type (whether it is a regular file, symlink, etc).
|
||||
AFileType:= g_file_info_get_file_type (AFileInfo);
|
||||
|
||||
if AFileType = G_FILE_TYPE_DIRECTORY then
|
||||
if AFileType in [G_FILE_TYPE_DIRECTORY, G_FILE_TYPE_SHORTCUT, G_FILE_TYPE_MOUNTABLE] then
|
||||
begin
|
||||
Result.Attributes:= Result.Attributes or S_IFDIR;
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue