mirror of
https://github.com/Lidarr/Lidarr.git
synced 2026-02-11 16:29:21 -06:00
@@ -67,7 +67,7 @@ namespace Lidarr.Api.V1.RootFolders
|
||||
DefaultQualityProfileId = resource.DefaultQualityProfileId,
|
||||
DefaultMonitorOption = resource.DefaultMonitorOption,
|
||||
DefaultNewItemMonitorOption = resource.DefaultNewItemMonitorOption,
|
||||
DefaultTags = resource.DefaultTags,
|
||||
DefaultTags = resource.DefaultTags ?? new HashSet<int>()
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace NzbDrone.Core.RootFolders
|
||||
public int DefaultQualityProfileId { get; set; }
|
||||
public MonitorTypes DefaultMonitorOption { get; set; }
|
||||
public NewItemMonitorTypes DefaultNewItemMonitorOption { get; set; }
|
||||
public HashSet<int> DefaultTags { get; set; }
|
||||
public HashSet<int> DefaultTags { get; set; } = new ();
|
||||
|
||||
public bool Accessible { get; set; }
|
||||
public long? FreeSpace { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user