Fix creating DLNA profiles

pull/6890/head
Cody Robibero 3 years ago
parent 718e4b8665
commit 5b7e8a27fb

@ -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