1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-05 13:21:25 -05:00

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

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