Apply review suggestions

This commit is contained in:
Shadowghost
2023-02-05 17:24:13 +01:00
committed by Shadowghost
parent 979964ef4b
commit 2403a0a367
5 changed files with 51 additions and 53 deletions

View File

@@ -325,7 +325,7 @@ public class TranscodingJobHelper : IDisposable
await DeletePartialStreamFiles(job.Path!, job.Type, 0, 1500).ConfigureAwait(false);
if (job.MediaSource?.VideoType == VideoType.Dvd || job.MediaSource?.VideoType == VideoType.BluRay)
{
var path = Path.Join(job.Path, "/" + job.MediaSource.Id + ".concat");
var path = Path.Join(job.Path, job.MediaSource.Id + ".concat");
File.Delete(path);
}
}