1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Changed: Don't return unmapped folders on rootfolder API call. Massively improves loading time. (#3116)

This commit is contained in:
Justin Kromlinger
2018-10-23 11:25:40 +02:00
committed by Leonardo Galli
parent 95fdf38662
commit 623da76d16
2 changed files with 27 additions and 1 deletions
@@ -52,7 +52,7 @@ namespace NzbDrone.Api.RootFolders
private List<RootFolderResource> GetRootFolders()
{
return _rootFolderService.AllWithUnmappedFolders().ToResource();
return _rootFolderService.AllWithSpace().ToResource();
}
private void DeleteFolder(int id)