Remove unnecessary null checks in some places

Related to https://github.com/jellyfin/jellyfin/issues/2149
This commit is contained in:
KonH
2020-10-03 22:03:23 +07:00
parent c0be770681
commit 211c9cd608
3 changed files with 3 additions and 6 deletions

View File

@@ -740,10 +740,7 @@ namespace Jellyfin.Api.Helpers
/// <param name="state">The state.</param>
private void OnFfMpegProcessExited(Process process, TranscodingJobDto job, StreamState state)
{
if (job != null)
{
job.HasExited = true;
}
job.HasExited = true;
_logger.LogDebug("Disposing stream resources");
state.Dispose();