mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-25 19:46:34 +00:00
update ffmpeg with qsv-compatible version
This commit is contained in:
@@ -111,8 +111,8 @@ namespace MediaBrowser.Server.Implementations.FileOrganization
|
||||
{
|
||||
try
|
||||
{
|
||||
return Directory
|
||||
.EnumerateDirectories(path, "*", SearchOption.TopDirectoryOnly)
|
||||
return _fileSystem
|
||||
.GetFileSystemEntryPaths(path)
|
||||
.ToList();
|
||||
}
|
||||
catch (IOException ex)
|
||||
|
||||
@@ -1165,7 +1165,7 @@ namespace MediaBrowser.Server.Implementations.Library
|
||||
/// <returns>IEnumerable{VirtualFolderInfo}.</returns>
|
||||
private IEnumerable<VirtualFolderInfo> GetView(string path)
|
||||
{
|
||||
return Directory.EnumerateDirectories(path, "*", SearchOption.TopDirectoryOnly)
|
||||
return _fileSystem.GetFileSystemEntryPaths(path)
|
||||
.Select(dir => new VirtualFolderInfo
|
||||
{
|
||||
Name = Path.GetFileName(dir),
|
||||
|
||||
Reference in New Issue
Block a user