diff options
| author | Isaac Gordezky <eye.zak@gmail.com> | 2022-02-13 23:24:52 +0000 |
|---|---|---|
| committer | Isaac Gordezky <eye.zak@gmail.com> | 2022-02-18 13:01:19 +0000 |
| commit | 48a7d3f48f84330eec3d21120887933ba950e824 (patch) | |
| tree | e52fa86ecd6e7843825f0c1a1115cd8f1a165a99 /Jellyfin.Api/Helpers/TranscodingJobHelper.cs | |
| parent | b92e1baa3c28870f49f82bfef9e48cd79b9b24c6 (diff) | |
[Bugfix] Report transcoding complete
Currently, when transcoding finishes it is not reported - leaving the UI with an incomplete transcode %
This change reports transcoding progress as empty / complete when the transcoding job finishes
Diffstat (limited to 'Jellyfin.Api/Helpers/TranscodingJobHelper.cs')
| -rw-r--r-- | Jellyfin.Api/Helpers/TranscodingJobHelper.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Jellyfin.Api/Helpers/TranscodingJobHelper.cs b/Jellyfin.Api/Helpers/TranscodingJobHelper.cs index 3526d56c6..56a54fb1d 100644 --- a/Jellyfin.Api/Helpers/TranscodingJobHelper.cs +++ b/Jellyfin.Api/Helpers/TranscodingJobHelper.cs @@ -753,6 +753,8 @@ namespace Jellyfin.Api.Helpers job.HasExited = true; job.ExitCode = process.ExitCode; + ReportTranscodingProgress(job, state, null, null, null, null, null); + _logger.LogDebug("Disposing stream resources"); state.Dispose(); |
