Fix early filestream close

This commit is contained in:
crobibero
2020-10-29 13:56:29 -06:00
parent 429e59fb81
commit 3568c5f39b
2 changed files with 4 additions and 4 deletions

View File

@@ -1220,11 +1220,11 @@ namespace Jellyfin.Api.Controllers
return NotFound();
}
await using var memoryStream = new MemoryStream();
await new ProgressiveFileCopier(liveStreamInfo, null, _transcodingJobHelper, CancellationToken.None)
.WriteToAsync(memoryStream, CancellationToken.None)
.WriteToAsync(Response.Body, CancellationToken.None)
.ConfigureAwait(false);
return File(memoryStream, MimeTypes.GetMimeType("file." + container));
Response.ContentType = MimeTypes.GetMimeType("file." + container);
return Ok();
}
private void AssertUserCanManageLiveTv()