aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Helpers/TranscodingJobHelper.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2023-02-04 20:16:45 +0100
committerShadowghost <Ghost_of_Stone@web.de>2023-02-04 20:16:45 +0100
commitf2b7f664aa9b3ade38a2402faf95ba9b6989fc41 (patch)
treec4beaecabcd67a77976dcf55ebb30ac3d9612cd7 /Jellyfin.Api/Helpers/TranscodingJobHelper.cs
parent626bb24bdd0aaca0fafde98bed973f770575b490 (diff)
Apply review suggestions
Diffstat (limited to 'Jellyfin.Api/Helpers/TranscodingJobHelper.cs')
-rw-r--r--Jellyfin.Api/Helpers/TranscodingJobHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Helpers/TranscodingJobHelper.cs b/Jellyfin.Api/Helpers/TranscodingJobHelper.cs
index cb73ad765..1ba739550 100644
--- a/Jellyfin.Api/Helpers/TranscodingJobHelper.cs
+++ b/Jellyfin.Api/Helpers/TranscodingJobHelper.cs
@@ -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);
}
}