aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/FileWriter.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-03-20 13:57:04 -0400
committerGitHub <noreply@github.com>2017-03-20 13:57:04 -0400
commit9148b6d27d85b3fb2b1c1b736668db2fc1ee6131 (patch)
treedd689fd9b7e37231e84f34ed764bf2dcc94b9c02 /Emby.Server.Implementations/HttpServer/FileWriter.cs
parent22f8b2122d93c158b11fa56dce35e7c584d36789 (diff)
parentf1b1458ee8b94a5c75ed009581f5e9cb22ba70b7 (diff)
Merge pull request #2535 from MediaBrowser/dev
3.2.8.6
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/FileWriter.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/FileWriter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpServer/FileWriter.cs b/Emby.Server.Implementations/HttpServer/FileWriter.cs
index d230a9b91..dbaf97b1e 100644
--- a/Emby.Server.Implementations/HttpServer/FileWriter.cs
+++ b/Emby.Server.Implementations/HttpServer/FileWriter.cs
@@ -160,7 +160,7 @@ namespace Emby.Server.Implementations.HttpServer
return;
}
- await response.TransmitFile(Path, RangeStart, RangeEnd, FileShare, cancellationToken).ConfigureAwait(false);
+ await response.TransmitFile(Path, RangeStart, RangeLength, FileShare, cancellationToken).ConfigureAwait(false);
}
finally
{