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/2f4ccff0a2cf754ae81eb0a3a9205a6404116fce/NzbDrone.Core/Indexers/IndexerBase.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
using System ;
using System.Collections.Generic ;
namespace NzbDrone.Core.Indexers
{
public abstract class IndexerBase : IIndexer
{
public abstract string Name { get ; }
public IndexerDefinition InstanceDefinition { get ; set ; }
public virtual IEnumerable < IndexerDefinition > DefaultDefinitions
{
get
{
yield return new IndexerDefinition
{
Name = Name ,
Enable = true ,
Implementation = GetType ( ) . Name ,
Settings = string . Empty
} ;
}
}
public virtual IParseFeed Parser
{
get
{
return new BasicRssParser ( ) ;
}
}
public abstract IEnumerable < string > RecentFeed { get ; }
public abstract IEnumerable < string > GetEpisodeSearchUrls ( string seriesTitle , int seasonNumber , int episodeNumber ) ;
public abstract IEnumerable < string > GetDailyEpisodeSearchUrls ( string seriesTitle , DateTime date ) ;
public abstract IEnumerable < string > GetSeasonSearchUrls ( string seriesTitle , int seasonNumber ) ;
public abstract IEnumerable < string > GetPartialSeasonSearchUrls ( string seriesTitle , int seasonNumber , int episodeWildcard ) ;
}
}