aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2021-09-11 15:07:09 +0200
committerGitHub <noreply@github.com>2021-09-11 15:07:09 +0200
commit62113c46034458d192804fb30708ed9ca414e131 (patch)
tree436a731f9e95424dd245f420302fb0d083ab31b2
parentcec0dd94baac67852898cc129fc02ceca364b98c (diff)
Update Jellyfin.Server/Infrastructure/SymlinkFollowingPhysicalFileResultExecutor.cs
-rw-r--r--Jellyfin.Server/Infrastructure/SymlinkFollowingPhysicalFileResultExecutor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Infrastructure/SymlinkFollowingPhysicalFileResultExecutor.cs b/Jellyfin.Server/Infrastructure/SymlinkFollowingPhysicalFileResultExecutor.cs
index 660f62428..e171fc145 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);
}