Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/d648056bc400ba13cff8a72adcc07b685d010f7e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
7 changed files with
20 additions and
5 deletions
@ -41,7 +41,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
if ( quality = = Quality . Unknown )
{
_logger . Trace ( "Unknown quality. skipping size check." ) ;
return fals e;
return tru e;
}
var qualityDefinition = _qualityDefinitionService . Get ( quality ) ;
@ -37,7 +37,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
if ( _blacklistService . Blacklisted ( subject . Release . Title ) )
{
_logger . Trace ( "{0} is blacklisted ", subject . Release . Title ) ;
_logger . Trace ( "{0} is blacklisted , rejecting. ", subject . Release . Title ) ;
return false ;
}
@ -33,6 +33,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
if ( ! _qualityUpgradableSpecification . CutoffNotMet ( subject . Series . QualityProfile , file . Quality , subject . ParsedEpisodeInfo . Quality ) )
{
_logger . Trace ( "Cutoff already met, rejecting." ) ;
return false ;
}
}
@ -40,7 +40,12 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
var queue = downloadClient . GetQueue ( ) . Select ( q = > q . RemoteEpisode ) ;
return ! IsInQueue ( subject , queue ) ;
if ( IsInQueue ( subject , queue ) )
{
_logger . Trace ( "Already in queue, rejecting." ) ;
}
return true ;
}
private bool IsInQueue ( RemoteEpisode newEpisode , IEnumerable < RemoteEpisode > queue )
@ -1,16 +1,24 @@
using NzbDrone.Core.IndexerSearch.Definitions ;
using NLog ;
using NzbDrone.Core.IndexerSearch.Definitions ;
using NzbDrone.Core.Parser.Model ;
namespace NzbDrone.Core.DecisionEngine.Specifications
{
public class NotSampleSpecification : IDecisionEngineSpecification
{
private readonly Logger _logger ;
public string RejectionReason { get { return "Sample" ; } }
public NotSampleSpecification ( Logger logger )
{
_logger = logger ;
}
public bool IsSatisfiedBy ( RemoteEpisode subject , SearchCriteriaBase searchCriteria )
{
if ( subject . Release . Title . ToLower ( ) . Contains ( "sample" ) & & subject . Release . Size < 70. Megabytes ( ) )
{
_logger . Trace ( "Sample release, rejecting." ) ;
return false ;
}
@ -51,6 +51,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.RssSync
if ( mostRecent ! = null & & mostRecent . EventType = = HistoryEventType . Grabbed )
{
_logger . Trace ( "Latest history item is downloading, rejecting." ) ;
return false ;
}
}
@ -41,7 +41,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.RssSync
{
if ( file . DateAdded < DateTime . Today . AddDays ( - 7 ) )
{
_logger . Trace ( "Proper for old file, skipp ing: {0}", subject ) ;
_logger . Trace ( "Proper for old file, reject ing: {0}", subject ) ;
return false ;
}