diff --git a/src/NzbDrone.Core/RootFolders/RootFolderService.cs b/src/NzbDrone.Core/RootFolders/RootFolderService.cs index 63700f87d..c3ddd3ba8 100644 --- a/src/NzbDrone.Core/RootFolders/RootFolderService.cs +++ b/src/NzbDrone.Core/RootFolders/RootFolderService.cs @@ -198,8 +198,8 @@ public string GetBestRootFolderPath(string path) private void GetDetails(RootFolder rootFolder, Dictionary seriesPaths, bool timeout) { - // Task.Run(() => - // { + Task.Run(() => + { if (_diskProvider.FolderExists(rootFolder.Path)) { rootFolder.Accessible = true; @@ -207,8 +207,7 @@ private void GetDetails(RootFolder rootFolder, Dictionary seriesPat rootFolder.TotalSpace = _diskProvider.GetTotalSize(rootFolder.Path); rootFolder.UnmappedFolders = GetUnmappedFolders(rootFolder.Path, seriesPaths); } - - // }).Wait(timeout ? 5000 : -1); + }).Wait(timeout ? 5000 : -1); } } }