mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Episode searching now stores the results of the tests.
This commit is contained in:
parent
b9e3d1a921
commit
c7f8f57f77
13 changed files with 314 additions and 81 deletions
21
NzbDrone.Core/Model/ReportRejectionType.cs
Normal file
21
NzbDrone.Core/Model/ReportRejectionType.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
using System.Linq;
|
||||
|
||||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public enum ReportRejectionType
|
||||
{
|
||||
None = 0,
|
||||
WrongSeries = 1,
|
||||
QualityNotWanted = 2,
|
||||
WrongSeason = 3,
|
||||
WrongEpisode = 3,
|
||||
Size = 3,
|
||||
Retention = 3,
|
||||
ExistingQualityIsEqualOrBetter = 4,
|
||||
Cutoff = 5,
|
||||
AlreadyInQueue = 6,
|
||||
DownloadClientFailure = 7,
|
||||
Skipped = 8,
|
||||
Failure,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue