From b32d1687421be1f8522d3a10cdab009ebdbdbd6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20Erik=20Hel=C3=B8?= Date: Sun, 7 May 2023 17:09:02 +0200 Subject: [PATCH] Clean up variable name case --- src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs b/src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs index 31ef62444..637474ac9 100644 --- a/src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs +++ b/src/NzbDrone.Core/ImportLists/Radarr/RadarrImport.cs @@ -129,8 +129,8 @@ namespace NzbDrone.Core.ImportLists.Radarr options = remoteRootfolders.OrderBy(d => d.Path, StringComparer.InvariantCultureIgnoreCase) .Select(d => new { - value = d.Path, - name = d.Path + Value = d.Path, + Name = d.Path }) }; }