Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/7eb0d62c531dce5050fee07ba05890a9c5186ba3/NzbDrone.Core/Indexers/Indexer.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Core/Indexers/Indexer.cs

12 lines
260 B

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Indexers
{
public class Indexer : ModelBase
{
public Boolean Enable { get; set; }
public String Type { get; set; }
public String Name { get; set; }
}
}