aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/FileWriter.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-03-20 13:56:44 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-03-20 13:56:44 -0400
commitf1b1458ee8b94a5c75ed009581f5e9cb22ba70b7 (patch)
treedd689fd9b7e37231e84f34ed764bf2dcc94b9c02 /Emby.Server.Implementations/HttpServer/FileWriter.cs
parent5b3b18b51dec8421d3ffc8c00874e22b026586b6 (diff)
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
{