Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/261751727b6547b1f711a860c14d5e74c51f30c4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
4 deletions
@ -57,9 +57,8 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
//Multiply maxSize by Series.Runtime
maxSize = maxSize * subject . Series . Runtime * subject . Episodes . Count ;
//Check if there was only one episode parsed
//and it is the first or last episode of the season
if ( subject . Episodes . Count = = 1 & & _episodeService . IsFirstOrLastEpisodeOfSeason ( subject . Episodes . Single ( ) . Id ) )
//Check if there was only one episode parsed and it is the first
if ( subject . Episodes . Count = = 1 & & subject . Episodes . First ( ) . EpisodeNumber = = 1 )
{
maxSize = maxSize * 2 ;
}
@ -21,7 +21,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
{
get
{
return "Cont r ains restricted term.";
return "Cont ains restricted term.";
}
}