Fix OriginalFilePath for imported movies (#10398)

pull/10406/head
Jendrik Weise 2 months ago committed by GitHub
parent a5c1025efd
commit 08c250dfe3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -240,7 +240,7 @@ namespace NzbDrone.Core.MediaFiles.MovieImport
return grandparentPath.GetRelativePath(path);
}
return Path.Combine(Path.GetFileName(parentPath), Path.GetFileName(path));
return Path.GetFileName(path);
}
}
}

Loading…
Cancel
Save