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

List<int> will be converted to json and stored in the DB

pull/6/head
Mark McDowall 12 years ago
parent 5150f9bd91
commit 1684ad6e16

@ -83,6 +83,7 @@ namespace NzbDrone.Core.Datastore
MapRepository.Instance.RegisterTypeConverter(typeof(Enum), new EnumIntConverter());
MapRepository.Instance.RegisterTypeConverter(typeof(Quality), new QualityIntConverter());
MapRepository.Instance.RegisterTypeConverter(typeof(Dictionary<string, string>), new EmbeddedDocumentConverter());
MapRepository.Instance.RegisterTypeConverter(typeof(List<int>), new EmbeddedDocumentConverter());
}
private static void RegisterProviderSettingConverter()

Loading…
Cancel
Save