1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-20 01:42:35 +01:00

Fix OriginalFilePath for imported movies (#10398)

This commit is contained in:
Jendrik Weise 2024-09-04 13:29:20 +02:00 committed by GitHub
parent a5c1025efd
commit 08c250dfe3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -240,7 +240,7 @@ private string GetOriginalFilePath(DownloadClientItem downloadClientItem, LocalM
return grandparentPath.GetRelativePath(path); return grandparentPath.GetRelativePath(path);
} }
return Path.Combine(Path.GetFileName(parentPath), Path.GetFileName(path)); return Path.GetFileName(path);
} }
} }
} }