Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/6b7e4d10e51c0dd654ae6f4ab31b619dce3a3429
You should set ROOT_URL correctly, otherwise the web may not work correctly.
6 changed files with
18 additions and
2 deletions
@ -10,7 +10,7 @@ using NzbDrone.Test.Common.AutoMoq;
namespace NzbDrone.Core.Test.JobTests
{
[TestFixture]
public class SearchJobTest: CoreTest
public class Episode SearchJobTest: CoreTest
{
[TestCase(0)]
[TestCase(-1)]
@ -205,7 +205,7 @@
<Compile Include= "ProviderTests\GrowlProviderTest.cs" />
<Compile Include= "ProviderTests\DiskProviderTests\ExtractArchiveFixture.cs" />
<Compile Include= "ProviderTests\PostDownloadProviderTests\GetFolderNameWithStatusFixture.cs" />
<Compile Include= "JobTests\ SearchJobTest.cs" />
<Compile Include= "JobTests\ Episode SearchJobTest.cs" />
<Compile Include= "ProviderTests\PostDownloadProviderTests\ProcessDownloadFixture.cs" />
<Compile Include= "ProviderTests\JobProviderTests\TestJobs.cs" />
<Compile Include= "JobTests\AppUpdateJobFixture.cs" />
@ -24,6 +24,10 @@ namespace NzbDrone.Core.Providers.Search
{
}
public DailyEpisodeSearch ( )
{
}
public override List < EpisodeParseResult > PerformSearch ( Series series , dynamic options , ProgressNotification notification )
{
if ( options . Episode = = null )
@ -24,6 +24,10 @@ namespace NzbDrone.Core.Providers.Search
{
}
public EpisodeSearch ( )
{
}
public override List < EpisodeParseResult > PerformSearch ( Series series , dynamic options , ProgressNotification notification )
{
//Todo: Daily and Anime or separate them out?
@ -24,6 +24,10 @@ namespace NzbDrone.Core.Providers.Search
{
}
public PartialSeasonSearch ( )
{
}
public override List < EpisodeParseResult > PerformSearch ( Series series , dynamic options , ProgressNotification notification )
{
if ( options . SeasonNumber = = null | | options . SeasonNumber < 0 )
@ -37,6 +37,10 @@ namespace NzbDrone.Core.Providers.Search
_searchHistoryProvider = searchHistoryProvider ;
}
protected SearchBase ( )
{
}
public abstract List < EpisodeParseResult > PerformSearch ( Series series , dynamic options , ProgressNotification notification ) ;
public abstract SearchHistoryItem CheckReport ( Series series , dynamic options , EpisodeParseResult episodeParseResult ,
SearchHistoryItem item ) ;