mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 21:54:26 -04:00
Don't skip hidden files
This commit is contained in:
parent
4bcf684b72
commit
8d902478a0
@ -684,7 +684,9 @@ namespace Emby.Server.Implementations.IO
|
|||||||
return new EnumerationOptions
|
return new EnumerationOptions
|
||||||
{
|
{
|
||||||
RecurseSubdirectories = recursive,
|
RecurseSubdirectories = recursive,
|
||||||
IgnoreInaccessible = true
|
IgnoreInaccessible = true,
|
||||||
|
// Don't skip any files.
|
||||||
|
AttributesToSkip = 0
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user