diff --git a/src/NzbDrone.Core/ImportLists/Radarr/RadarrAPIResource.cs b/src/NzbDrone.Core/ImportLists/Radarr/RadarrAPIResource.cs index 880c30778b..b8582a2912 100644 --- a/src/NzbDrone.Core/ImportLists/Radarr/RadarrAPIResource.cs +++ b/src/NzbDrone.Core/ImportLists/Radarr/RadarrAPIResource.cs @@ -16,7 +16,7 @@ public class RadarrMovie 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 83e583a181..31ef62444c 100644 --- a/src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs +++ b/src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs @@ -51,7 +51,7 @@ public override ImportListFetchResult Fetch() 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; }