1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00
Files
Sonarr/src/NzbDrone.Core/DecisionEngine/DownloadRejectionReason.cs
T
2024-12-01 16:15:52 -08:00

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,
}