1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-03 13:45:02 +00:00

Fixed: Root Folder Downloads check giving errors when RuTorrent is used

This commit is contained in:
Robin Dadswell 2021-05-23 20:42:44 +01:00 committed by Mark McDowall
parent 6c5cc430b7
commit a22a38016d

View file

@ -5,6 +5,11 @@ namespace NzbDrone.Core.Download
{
public class DownloadClientInfo
{
public DownloadClientInfo()
{
OutputRootFolders = new List<OsPath>();
}
public bool IsLocalhost { get; set; }
public List<OsPath> OutputRootFolders { get; set; }
}