add new voice commands

This commit is contained in:
Luke Pulverenti
2015-08-01 17:17:46 -04:00
parent a7b25c065c
commit bd39a81ba2
4 changed files with 6 additions and 6 deletions

View File

@@ -234,10 +234,10 @@ namespace MediaBrowser.Common.Implementations.IO
{
if (_supportsAsyncFileStreams && isAsync)
{
return new FileStream(path, mode, access, share, 4096, true);
return new FileStream(path, mode, access, share, StreamDefaults.DefaultFileStreamBufferSize, true);
}
return new FileStream(path, mode, access, share);
return new FileStream(path, mode, access, share, StreamDefaults.DefaultFileStreamBufferSize);
}
/// <summary>