Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/c00c207517673d7667e88c2f93b344b72afdbde4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
10 deletions
@ -103,12 +103,12 @@ namespace NzbDrone.Core.Test.DecisionEngineTests
_upgradeHistory . IsSatisfiedBy ( _parseResultMulti , null ) . Accepted . Should ( ) . BeTrue ( ) ;
}
[Test]
public void should_return_true_if_latest_history_has_a_download_id_and_cdh_is_enabled ( )
{
GivenMostRecentForEpisode ( FIRST_EPISODE_ID , "test" , _upgradableQuality , DateTime . UtcNow , HistoryEventType . Grabbed ) ;
_upgradeHistory . IsSatisfiedBy ( _parseResultMulti , null ) . Accepted . Should ( ) . BeTrue ( ) ;
}
// [Test]
// public void should_return_true_if_latest_history_has_a_download_id_and_cdh_is_enabled()
// {
// GivenMostRecentForEpisode(FIRST_EPISODE_ID, "test", _not upgradableQuality, DateTime.UtcNow, HistoryEventType.Grabbed);
// _upgradeHistory.IsSatisfiedBy(_parseResultMulti, null).Accepted.Should().BeTrue();
// }
[Test]
public void should_return_true_if_latest_history_item_is_older_than_twelve_hours ( )
@ -46,18 +46,18 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.RssSync
if ( mostRecent ! = null & & mostRecent . EventType = = HistoryEventType . Grabbed )
{
var recent Blackhole = mostRecent . DownloadId . IsNullOrWhiteSpace ( ) & & mostRecent . Date . After ( DateTime . UtcNow . AddHours ( - 12 ) ) ;
var recent = mostRecent . Date . After ( DateTime . UtcNow . AddHours ( - 12 ) ) ;
var cutoffUnmet = _qualityUpgradableSpecification . CutoffNotMet ( subject . Series . Profile , mostRecent . Quality , subject . ParsedEpisodeInfo . Quality ) ;
var upgradeable = _qualityUpgradableSpecification . IsUpgradable ( subject . Series . Profile , mostRecent . Quality , subject . ParsedEpisodeInfo . Quality ) ;
if ( ! recent Blackhole & & cdhEnabled )
if ( ! recent & & cdhEnabled )
{
continue ;
}
if ( ! cutoffUnmet )
{
if ( recent Blackhole )
if ( recent )
{
return Decision . Reject ( "Recent grab event in history already meets cutoff: {0}" , mostRecent . Quality ) ;
}
@ -67,7 +67,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.RssSync
if ( ! upgradeable )
{
if ( recent Blackhole )
if ( recent )
{
return Decision . Reject ( "Recent grab event in history is of equal or higher quality: {0}" , mostRecent . Quality ) ;
}