mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-25 10:46:24 +00:00
move common dependencies
This commit is contained in:
parent
ce38e98791
commit
2729301bff
55 changed files with 10787 additions and 171 deletions
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue