Clean up variable name case

This commit is contained in:
Lars Erik Helø 2023-05-07 17:09:02 +02:00 committed by Qstick
parent 20301bdb78
commit b32d168742
1 changed files with 2 additions and 2 deletions

View File

@ -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
})
};
}