Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/8afd7d2b478e41432db2edb3641bbb7c0bfaa3bd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
6 additions and
8 deletions
@ -67,7 +67,7 @@ namespace NzbDrone.Core.Test
. Setup ( c = > c . GetSeries ( 1 ) ) . Returns ( series ) ;
mocker . GetMock < EpisodeProvider > ( )
. Setup ( c = > c . GetEpisode sBySeason( 1 , 1 ) ) . Returns ( episodes ) ;
. Setup ( c = > c . GetEpisode Number sBySeason( 1 , 1 ) ) . Returns ( episodes . Select ( e = > e . EpisodeNumber ) . ToList ( ) ) ;
mocker . GetMock < SceneMappingProvider > ( )
. Setup ( s = > s . GetSceneName ( 1 ) ) . Returns ( String . Empty ) ;
@ -128,17 +128,11 @@ namespace NzbDrone.Core.Test
. Setup ( c = > c . GetSeries ( 1 ) ) . Returns ( series ) ;
mocker . GetMock < EpisodeProvider > ( )
. Setup ( c = > c . GetEpisode sBySeason( 1 , 1 ) ) . Returns ( episodes ) ;
. Setup ( c = > c . GetEpisode Number sBySeason( 1 , 1 ) ) . Returns ( episodes . Select ( e = > e . EpisodeNumber ) . ToList ( ) ) ;
mocker . GetMock < SceneMappingProvider > ( )
. Setup ( s = > s . GetSceneName ( 1 ) ) . Returns ( String . Empty ) ;
//mocker.GetMock<InventoryProvider>()
// .Setup(s => s.IsQualityNeeded(It.IsAny<EpisodeParseResult>())).Returns(true);
//mocker.GetMock<DownloadProvider>()
// .Setup(s => s.DownloadReport(It.IsAny<EpisodeParseResult>())).Returns(true);
//Act
mocker . Resolve < SearchProvider > ( ) . SeasonSearch ( notification , 1 , 1 ) ;
@ -33,6 +33,9 @@ namespace NzbDrone.Core.Test
mocker . GetMock < EpisodeProvider > ( )
. Setup ( c = > c . GetSeasons ( 1 ) ) . Returns ( seasons ) ;
mocker . GetMock < EpisodeProvider > ( )
. Setup ( c = > c . IsIgnored ( It . IsAny < int > ( ) , It . IsAny < int > ( ) ) ) . Returns ( false ) ;
mocker . GetMock < SeasonSearchJob > ( )
. Setup ( c = > c . Start ( notification , 1 , It . IsAny < int > ( ) ) ) . Verifiable ( ) ;
@ -108,6 +108,7 @@ namespace NzbDrone.Core
_kernel . Bind < IJob > ( ) . To < RenameSeasonJob > ( ) . InSingletonScope ( ) ;
_kernel . Bind < IJob > ( ) . To < SeriesSearchJob > ( ) . InSingletonScope ( ) ;
_kernel . Bind < IJob > ( ) . To < RenameSeriesJob > ( ) . InSingletonScope ( ) ;
_kernel . Bind < IJob > ( ) . To < BacklogSearchJob > ( ) . InSingletonScope ( ) ;
_kernel . Get < JobProvider > ( ) . Initialize ( ) ;
_kernel . Get < WebTimer > ( ) . StartTimer ( 30 ) ;