mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-25 07:23:16 +00:00
Couple minor download spec changes
This commit is contained in:
parent
aa2c96ec7d
commit
261751727b
2 changed files with 3 additions and 4 deletions
|
@ -57,9 +57,8 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
|
||||||
//Multiply maxSize by Series.Runtime
|
//Multiply maxSize by Series.Runtime
|
||||||
maxSize = maxSize * subject.Series.Runtime * subject.Episodes.Count;
|
maxSize = maxSize * subject.Series.Runtime * subject.Episodes.Count;
|
||||||
|
|
||||||
//Check if there was only one episode parsed
|
//Check if there was only one episode parsed and it is the first
|
||||||
//and it is the first or last episode of the season
|
if (subject.Episodes.Count == 1 && subject.Episodes.First().EpisodeNumber == 1)
|
||||||
if (subject.Episodes.Count == 1 && _episodeService.IsFirstOrLastEpisodeOfSeason(subject.Episodes.Single().Id))
|
|
||||||
{
|
{
|
||||||
maxSize = maxSize * 2;
|
maxSize = maxSize * 2;
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return "Contrains restricted term.";
|
return "Contains restricted term.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue