mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-15 18:53:27 +01:00
fixed issue of not seeing network shares
This commit is contained in:
@@ -35,7 +35,7 @@ namespace MediaBrowser.Controller.IO
|
||||
|
||||
foreach (var entry in entries)
|
||||
{
|
||||
var isDirectory = entry.Attributes.HasFlag(FileAttributes.Directory);
|
||||
var isDirectory = (entry.Attributes & FileAttributes.Directory) == FileAttributes.Directory;
|
||||
|
||||
if (resolveShortcuts && FileSystem.IsShortcut(entry.FullName))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user