Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/48a7d3f48f84330eec3d21120887933ba950e824 You should set ROOT_URL correctly, otherwise the web may not work correctly.

[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
pull/7332/head
Isaac Gordezky 3 years ago
parent b92e1baa3c
commit 48a7d3f48f

@ -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();

Loading…
Cancel
Save