Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/93ee8491184b8a2c703fe0b4b0cbefc97b8f2d9f?style=split&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Broken Newznab testing.

pull/2789/head
Leonardo Galli 7 years ago
parent 8dcde96f3f
commit 93ee849118

@ -99,7 +99,8 @@ namespace NzbDrone.Core.Indexers.Newznab
foreach (var category in categories) foreach (var category in categories)
{ {
l.AddRange(CategoryIds(category.Subcategories)); if (category.Subcategories != null)
l.AddRange(CategoryIds(category.Subcategories));
} }
return l; return l;

Loading…
Cancel
Save