Processed comments.

This commit is contained in:
Taloth Saldono
2014-11-19 20:02:44 +01:00
parent 102acae972
commit 2345984bda
6 changed files with 7 additions and 18 deletions
@@ -13,14 +13,6 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.Search
_logger = logger;
}
public string RejectionReason
{
get
{
return "Not enough Torrent seeders";
}
}
public RejectionType Type
{
get
@@ -41,8 +33,8 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.Search
if (torrentInfo.Seeds != null && torrentInfo.Seeds < 1)
{
_logger.Debug("Only {0} seeders, skipping.", torrentInfo.Seeds);
return Decision.Reject("No seeders");
_logger.Debug("Not enough seeders. ({0})", torrentInfo.Seeds);
return Decision.Reject("Not enough seeders. ({0})", torrentInfo.Seeds);
}
return Decision.Accept();