1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

Replace tabs with 4 spaces

This commit is contained in:
ta264
2019-12-22 21:24:10 +00:00
committed by Qstick
parent 8476e36122
commit 997ff74fb9
69 changed files with 806 additions and 806 deletions
@@ -25,7 +25,7 @@ namespace NzbDrone.Core.DecisionEngine
{
private readonly IEnumerable<IDecisionEngineSpecification> _specifications;
private readonly IParsingService _parsingService;
private readonly IConfigService _configService;
private readonly IConfigService _configService;
private readonly IQualityDefinitionService _definitionService;
private readonly Logger _logger;
@@ -35,7 +35,7 @@ namespace NzbDrone.Core.DecisionEngine
{
_specifications = specifications;
_parsingService = parsingService;
_configService = configService;
_configService = configService;
_definitionService = qualityDefinitionService;
_logger = logger;
}
@@ -38,10 +38,10 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
var qualityDefinition = _qualityDefinitionService.Get(quality);
if (subject.Movie.Runtime == 0)
{
_logger.Warn("{0} has no runtime information using median movie runtime of 110 minutes.", subject.Movie);
subject.Movie.Runtime = 110;
}
{
_logger.Warn("{0} has no runtime information using median movie runtime of 110 minutes.", subject.Movie);
subject.Movie.Runtime = 110;
}
if (qualityDefinition.MinSize.HasValue)
{