Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/2a481957f0ccea5e28877ad501c7cc524f28ef1c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
1 deletions
@ -7,6 +7,7 @@ using NzbDrone.Core.MetadataSource;
using NzbDrone.Core.Rest ;
using NzbDrone.Core.Test.Framework ;
using NzbDrone.Core.Tv ;
using NzbDrone.Test.Common ;
using NzbDrone.Test.Common.Categories ;
namespace NzbDrone.Core.Test.MetadataSourceTests
@ -51,6 +52,7 @@ namespace NzbDrone.Core.Test.MetadataSourceTests
public void getting_details_of_invalid_series ( )
{
Assert . Throws < RestException > ( ( ) = > Subject . GetSeriesInfo ( Int32 . MaxValue ) ) ;
ExceptionVerification . ExpectedWarns ( 1 ) ;
}
private void ValidateSeries ( Series series )
@ -92,7 +94,7 @@ namespace NzbDrone.Core.Test.MetadataSourceTests
private void ValidateEpisode ( Episode episode )
{
episode . Should ( ) . NotBeNull ( ) ;
episode . Title . Should ( ) . NotBeBlank ( ) ;
//episode.Title.Should().NotBeBlank() ;
episode . EpisodeNumber . Should ( ) . NotBe ( 0 ) ;
episode . TvDbEpisodeId . Should ( ) . BeGreaterThan ( 0 ) ;