mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-18 11:29:18 -07:00
14 lines
309 B
C#
14 lines
309 B
C#
using MediaBrowser.Model.Logging;
|
|
|
|
namespace Emby.Common.Implementations.IO
|
|
{
|
|
public class WindowsFileSystem : ManagedFileSystem
|
|
{
|
|
public WindowsFileSystem(ILogger logger)
|
|
: base(logger, true, true)
|
|
{
|
|
EnableFileSystemRequestConcat = false;
|
|
}
|
|
}
|
|
}
|