mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
76 lines
1.7 KiB
C#
76 lines
1.7 KiB
C#
namespace NzbDrone.Core.DecisionEngine;
|
|
|
|
public enum DownloadRejectionReason
|
|
{
|
|
Unknown,
|
|
UnknownSeries,
|
|
UnknownEpisode,
|
|
MatchesAnotherSeries,
|
|
UnableToParse,
|
|
Error,
|
|
DecisionError,
|
|
MinimumAgeDelay,
|
|
SeriesNotMonitored,
|
|
EpisodeNotMonitored,
|
|
HistoryRecentCutoffMet,
|
|
HistoryCdhDisabledCutoffMet,
|
|
HistoryHigherPreference,
|
|
HistoryHigherRevision,
|
|
HistoryCutoffMet,
|
|
HistoryCustomFormatCutoffMet,
|
|
HistoryCustomFormatScore,
|
|
HistoryCustomFormatScoreIncrement,
|
|
NoMatchingTag,
|
|
PropersDisabled,
|
|
ProperForOldFile,
|
|
WrongEpisode,
|
|
WrongSeason,
|
|
WrongSeries,
|
|
FullSeason,
|
|
UnknownRuntime,
|
|
BelowMinimumSize,
|
|
AboveMaximumSize,
|
|
AlreadyImportedSameHash,
|
|
AlreadyImportedSameName,
|
|
UnknownReleaseGroup,
|
|
ReleaseGroupDoesNotMatch,
|
|
IndexerDisabled,
|
|
Blocklisted,
|
|
CustomFormatMinimumScore,
|
|
MinimumFreeSpace,
|
|
FullSeasonNotAired,
|
|
MaximumSizeExceeded,
|
|
MinimumAge,
|
|
MaximumAge,
|
|
MultiSeason,
|
|
Sample,
|
|
ProtocolDisabled,
|
|
QualityNotWanted,
|
|
QualityUpgradesDisabled,
|
|
QueueHigherPreference,
|
|
QueueHigherRevision,
|
|
QueueCutoffMet,
|
|
QueueCustomFormatCutoffMet,
|
|
QueueCustomFormatScore,
|
|
QueueCustomFormatScoreIncrement,
|
|
QueueNoUpgrades,
|
|
QueuePropersDisabled,
|
|
Raw,
|
|
MustContainMissing,
|
|
MustNotContainPresent,
|
|
RepackDisabled,
|
|
RepackUnknownReleaseGroup,
|
|
RepackReleaseGroupDoesNotMatch,
|
|
ExistingFileHasMoreEpisodes,
|
|
AmbiguousNumbering,
|
|
NotSeasonPack,
|
|
SplitEpisode,
|
|
MinimumSeeders,
|
|
DiskHigherPreference,
|
|
DiskHigherRevision,
|
|
DiskCutoffMet,
|
|
DiskCustomFormatCutoffMet,
|
|
DiskCustomFormatScore,
|
|
DiskCustomFormatScoreIncrement,
|
|
}
|