Update Jellyfin.Server/Infrastructure/SymlinkFollowingPhysicalFileResultExecutor.cs

This commit is contained in:
Claus Vium 2021-09-11 15:07:09 +02:00 committed by GitHub
parent cec0dd94ba
commit 62113c4603
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -136,7 +136,7 @@ namespace Jellyfin.Server.Infrastructure
fileStream.Seek(offset, SeekOrigin.Begin);
await StreamCopyOperation
.CopyToAsync(fileStream, response.Body, count, bufferSize, CancellationToken.None)
.CopyToAsync(fileStream, response.Body, count, BufferSize, CancellationToken.None)
.ConfigureAwait(true);
}