mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
Return total space when adding new root folder
This commit is contained in:
parent
b529270f71
commit
1c36bc5fee
@ -120,7 +120,9 @@ public RootFolder Add(RootFolder rootFolder)
|
||||
_rootFolderRepository.Insert(rootFolder);
|
||||
|
||||
rootFolder.FreeSpace = _diskProvider.GetAvailableSpace(rootFolder.Path);
|
||||
rootFolder.TotalSpace = _diskProvider.GetTotalSize(rootFolder.Path);
|
||||
rootFolder.UnmappedFolders = GetUnmappedFolders(rootFolder.Path);
|
||||
|
||||
return rootFolder;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user