1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

Fixed: Paths for renamed movie files in Custom Script and Webhook

Closes #10359
This commit is contained in:
Bogdan
2024-08-27 02:11:31 +03:00
parent 674e414111
commit 2700a6cf8a
2 changed files with 2 additions and 2 deletions
@@ -13,7 +13,7 @@ namespace NzbDrone.Core.Notifications.Webhook
{
Id = movieFile.Id;
RelativePath = movieFile.RelativePath;
Path = movieFile.Path;
Path = System.IO.Path.Combine(movieFile.Movie.Path, movieFile.RelativePath);
Quality = movieFile.Quality.Quality.Name;
QualityVersion = movieFile.Quality.Revision.Version;
ReleaseGroup = movieFile.ReleaseGroup;