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

Fixed: Creating root folders without default tags

pull/3560/head
Bogdan 9 months ago
parent 68b3904382
commit b5334da253

@ -13,7 +13,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 IsCalibreLibrary { get; set; }
public CalibreSettings CalibreSettings { get; set; }

@ -108,7 +108,7 @@ namespace Readarr.Api.V1.RootFolders
DefaultQualityProfileId = resource.DefaultQualityProfileId,
DefaultMonitorOption = resource.DefaultMonitorOption,
DefaultNewItemMonitorOption = resource.DefaultNewItemMonitorOption,
DefaultTags = resource.DefaultTags,
DefaultTags = resource.DefaultTags ?? new HashSet<int>(),
IsCalibreLibrary = resource.IsCalibreLibrary,
CalibreSettings = cs
};

Loading…
Cancel
Save