Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/1c36bc5fee056a0fef5ef730f8b6895f22403636 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Return total space when adding new root folder

pull/2440/head
Mark McDowall 7 years ago
parent b529270f71
commit 1c36bc5fee

@ -120,7 +120,9 @@ namespace NzbDrone.Core.RootFolders
_rootFolderRepository.Insert(rootFolder);
rootFolder.FreeSpace = _diskProvider.GetAvailableSpace(rootFolder.Path);
rootFolder.TotalSpace = _diskProvider.GetTotalSize(rootFolder.Path);
rootFolder.UnmappedFolders = GetUnmappedFolders(rootFolder.Path);
return rootFolder;
}

Loading…
Cancel
Save