mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #6890 from crobibero/dlna-create
Fix creating DLNA profiles
This commit is contained in:
commit
11419cbbfd
@ -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