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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user