Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/f01573928544a9ebea6b5d0fc3d90445354aa5e4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -23,7 +23,7 @@ namespace NzbDrone.Core.Test.JobTests
var notification = new ProgressNotification ( "Series Search" ) ;
Mocker . GetMock < Episode Provider> ( )
Mocker . GetMock < Season Provider> ( )
. Setup ( c = > c . GetSeasons ( 1 ) ) . Returns ( seasons ) ;
Mocker . GetMock < SeasonProvider > ( )
@ -50,7 +50,7 @@ namespace NzbDrone.Core.Test.JobTests
var notification = new ProgressNotification ( "Series Search" ) ;
Mocker . GetMock < Episode Provider> ( )
Mocker . GetMock < Season Provider> ( )
. Setup ( c = > c . GetSeasons ( 1 ) ) . Returns ( seasons ) ;
//Act
@ -65,7 +65,7 @@ namespace NzbDrone.Core.Test.JobTests
[Test]
public void SeriesSearch_should_not_search_for_season_0 ( )
{
Mocker . GetMock < Episode Provider> ( )
Mocker . GetMock < Season Provider> ( )
. Setup ( c = > c . GetSeasons ( It . IsAny < int > ( ) ) )
. Returns ( new List < int > { 0 , 1 , 2 } ) ;