diff --git a/src/NzbDrone.Core/ImportLists/Radarr/RadarrAPIResource.cs b/src/NzbDrone.Core/ImportLists/Radarr/RadarrAPIResource.cs index 880c30778..b8582a291 100644 --- a/src/NzbDrone.Core/ImportLists/Radarr/RadarrAPIResource.cs +++ b/src/NzbDrone.Core/ImportLists/Radarr/RadarrAPIResource.cs @@ -16,7 +16,7 @@ namespace NzbDrone.Core.ImportLists.Radarr public int Year { get; set; } public string TitleSlug { get; set; } public int QualityProfileId { get; set; } - public string RootFolderPath { get; set; } + public string Path { get; set; } public HashSet Tags { get; set; } } diff --git a/src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs b/src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs index 83e583a18..31ef62444 100644 --- a/src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs +++ b/src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs @@ -51,7 +51,7 @@ namespace NzbDrone.Core.ImportLists.Radarr continue; } - if (Settings.RootFolderPaths.Any() && !Settings.RootFolderPaths.Any(rootFolderPath => remoteMovie.RootFolderPath.ContainsIgnoreCase(rootFolderPath))) + if (Settings.RootFolderPaths.Any() && !Settings.RootFolderPaths.Any(rootFolderPath => remoteMovie.Path.ContainsIgnoreCase(rootFolderPath))) { continue; }