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

Fixed: NullRef on RootFolder add from ModelEvent Broadcast

pull/4970/head
Qstick 5 years ago
parent bc4bb772ec
commit 2a84c4737b

@ -42,7 +42,7 @@ namespace Radarr.Api.V3.RootFolders
private RootFolderResource GetRootFolder(int id)
{
var timeout = Request.GetBooleanQueryParameter("timeout", true);
var timeout = Context?.Request?.GetBooleanQueryParameter("timeout", true) ?? true;
return _rootFolderService.Get(id, timeout).ToResource();
}

Loading…
Cancel
Save