mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Fix creating DLNA profiles
This commit is contained in:
parent
718e4b8665
commit
5b7e8a27fb
@ -350,7 +350,7 @@ namespace Emby.Dlna
|
|||||||
Directory.CreateDirectory(systemProfilesPath);
|
Directory.CreateDirectory(systemProfilesPath);
|
||||||
|
|
||||||
var fileOptions = AsyncFile.WriteOptions;
|
var fileOptions = AsyncFile.WriteOptions;
|
||||||
fileOptions.Mode = FileMode.CreateNew;
|
fileOptions.Mode = FileMode.Create;
|
||||||
fileOptions.PreallocationSize = length;
|
fileOptions.PreallocationSize = length;
|
||||||
using (var fileStream = new FileStream(path, fileOptions))
|
using (var fileStream = new FileStream(path, fileOptions))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user