mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 14:33:06 +03:00
Apply review suggestions
This commit is contained in:
@@ -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.GetDirectoryName(job.Path) + "/" + job.MediaSource.Id + ".concat";
|
||||
var path = Path.Join(job.Path, "/" + job.MediaSource.Id + ".concat");
|
||||
File.Delete(path);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user