mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
move common dependencies
This commit is contained in:
13
Emby.Common.Implementations/IO/WindowsFileSystem.cs
Normal file
13
Emby.Common.Implementations/IO/WindowsFileSystem.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using MediaBrowser.Model.Logging;
|
||||
|
||||
namespace Emby.Common.Implementations.IO
|
||||
{
|
||||
public class WindowsFileSystem : ManagedFileSystem
|
||||
{
|
||||
public WindowsFileSystem(ILogger logger)
|
||||
: base(logger, true, true)
|
||||
{
|
||||
EnableFileSystemRequestConcat = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user