mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-09-01 03:30:06 +00:00
add new voice commands
This commit is contained in:
parent
a7b25c065c
commit
bd39a81ba2
4 changed files with 6 additions and 6 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue