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

35 lines
1.2 KiB

using System;
using System.Collections.Generic;
namespace NzbDrone.Core.Indexers
{
public abstract class IndexerBase : IIndexer
{
public abstract string Name { get; }
public virtual bool EnableByDefault { get { return true; } }
public IndexerDefinition InstanceDefinition { get; set; }
public virtual IEnumerable<IndexerDefinition> DefaultDefinitions
{
get
{
yield return new IndexerDefinition
{
Name = Name,
Enable = EnableByDefault,
Implementation = GetType().Name,
Settings = String.Empty
};
}
}
public virtual IParseFeed Parser { get; private set; }
public abstract IEnumerable<string> RecentFeed { get; }
public abstract IEnumerable<string> GetEpisodeSearchUrls(string seriesTitle, int tvRageId, int seasonNumber, int episodeNumber);
public abstract IEnumerable<string> GetDailyEpisodeSearchUrls(string seriesTitle, int tvRageId, DateTime date);
public abstract IEnumerable<string> GetSeasonSearchUrls(string seriesTitle, int tvRageId, int seasonNumber, int offset);
}
}