Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/f582457ddce0136384a159436dc34aaf67d0ad61
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -65,9 +65,9 @@ namespace NzbDrone.Core.Providers
public virtual IList < Episode > EpisodesWithoutFiles ( bool includeSpecials )
{
if ( includeSpecials )
return _repository . All < Episode > ( ) . Where ( e = > e . EpisodeFileId = = 0 & & e . AirDate < = DateTime . Today ) . ToList ( ) ;
return _repository . All < Episode > ( ) . Where ( e = > e . EpisodeFileId = = 0 & & e . AirDate < = DateTime . Today & & e . Series . Monitored & & e . Season . Monitored ) . ToList ( ) ;
return _repository . All < Episode > ( ) . Where ( e = > e . EpisodeFileId = = 0 & & e . AirDate < = DateTime . Today & & e . SeasonNumber > 0 ) . ToList ( ) ;
return _repository . All < Episode > ( ) . Where ( e = > e . EpisodeFileId = = 0 & & e . AirDate < = DateTime . Today & & e . SeasonNumber > 0 & & e . Series . Monitored & & e . Season . Monitored ) . ToList ( ) ;
}
/// <summary>