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

19 lines
406 B

using NzbDrone.Common;
using NzbDrone.Common.Composition;
namespace NzbDrone.Update
{
public class UpdateContainerBuilder : ContainerBuilderBase
{
private UpdateContainerBuilder()
: base("NzbDrone.Update", "NzbDrone.Common")
{
}
public static IContainer Build()
{
return new UpdateContainerBuilder().Container;
}
}
}