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

14 lines
293 B

using NzbDrone.Api.SignalR;
using NzbDrone.Core.RootFolders;
namespace NzbDrone.Api.RootFolders
{
public class RootFolderConnection : BasicResourceConnection<RootFolder>
{
public override string Resource
{
get { return "RootFolder"; }
}
}
}