Merge pull request #6890 from crobibero/dlna-create

Fix creating DLNA profiles
pull/6893/head
Claus Vium 3 years ago committed by GitHub
commit 11419cbbfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -350,7 +350,7 @@ namespace Emby.Dlna
Directory.CreateDirectory(systemProfilesPath);
var fileOptions = AsyncFile.WriteOptions;
fileOptions.Mode = FileMode.CreateNew;
fileOptions.Mode = FileMode.Create;
fileOptions.PreallocationSize = length;
using (var fileStream = new FileStream(path, fileOptions))
{

Loading…
Cancel
Save