From 62113c46034458d192804fb30708ed9ca414e131 Mon Sep 17 00:00:00 2001 From: Claus Vium Date: Sat, 11 Sep 2021 15:07:09 +0200 Subject: [PATCH] Update Jellyfin.Server/Infrastructure/SymlinkFollowingPhysicalFileResultExecutor.cs --- .../SymlinkFollowingPhysicalFileResultExecutor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Server/Infrastructure/SymlinkFollowingPhysicalFileResultExecutor.cs b/Jellyfin.Server/Infrastructure/SymlinkFollowingPhysicalFileResultExecutor.cs index 660f62428a..e171fc145c 100644 --- a/Jellyfin.Server/Infrastructure/SymlinkFollowingPhysicalFileResultExecutor.cs +++ b/Jellyfin.Server/Infrastructure/SymlinkFollowingPhysicalFileResultExecutor.cs @@ -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); }