mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
fixed issue of not seeing network shares
This commit is contained in:
@@ -207,11 +207,6 @@ namespace MediaBrowser.Api
|
||||
{
|
||||
var entries = new DirectoryInfo(request.Path).EnumerateFileSystemInfos().Where(i =>
|
||||
{
|
||||
if (i.Attributes.HasFlag(FileAttributes.System))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!request.IncludeHidden && i.Attributes.HasFlag(FileAttributes.Hidden))
|
||||
{
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user