mirror of
https://github.com/Radarr/Radarr
synced 2026-02-05 14:24:08 +01:00
Fix OriginalFilePath for imported movies (#10398)
This commit is contained in:
parent
a5c1025efd
commit
08c250dfe3
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ private string GetOriginalFilePath(DownloadClientItem downloadClientItem, LocalM
|
|||
return grandparentPath.GetRelativePath(path);
|
||||
}
|
||||
|
||||
return Path.Combine(Path.GetFileName(parentPath), Path.GetFileName(path));
|
||||
return Path.GetFileName(path);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue