Procházet zdrojové kódy

[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
Isaac Gordezky před 3 roky
rodič
revize
48a7d3f48f
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      Jellyfin.Api/Helpers/TranscodingJobHelper.cs

+ 2 - 0
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();