diff options
| author | David <daullmer@gmail.com> | 2020-09-05 10:38:16 +0200 |
|---|---|---|
| committer | David <daullmer@gmail.com> | 2020-09-05 10:38:16 +0200 |
| commit | 4836f14affcdf1b2806aafb0bb638456add1b612 (patch) | |
| tree | 1def4ed4cae6e60106ff68dd37b0b68380f46fa6 | |
| parent | d8c6d291829f6a80ad1c13e039293f04083470f0 (diff) | |
Enable HTTP Range Processing
| -rw-r--r-- | Jellyfin.Api/Helpers/FileStreamResponseHelpers.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Helpers/FileStreamResponseHelpers.cs b/Jellyfin.Api/Helpers/FileStreamResponseHelpers.cs index deb54dbe6..884bfbe44 100644 --- a/Jellyfin.Api/Helpers/FileStreamResponseHelpers.cs +++ b/Jellyfin.Api/Helpers/FileStreamResponseHelpers.cs @@ -72,7 +72,7 @@ namespace Jellyfin.Api.Helpers return new NoContentResult(); } - return new PhysicalFileResult(path, contentType); + return new PhysicalFileResult(path, contentType) { EnableRangeProcessing = true }; } /// <summary> |
