1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

New: Release Type (Single/Multi episode and Season Pack) for Custom Formats

Closes #3562
This commit is contained in:
Mark McDowall
2024-02-28 21:38:22 -08:00
committed by Mark McDowall
parent c99d81e79b
commit f8a0751775
23 changed files with 408 additions and 38 deletions
@@ -194,6 +194,11 @@ namespace NzbDrone.Core.Blocklisting
blocklist.IndexerFlags = flags;
}
if (Enum.TryParse(message.Data.GetValueOrDefault("releaseType"), true, out ReleaseType releaseType))
{
blocklist.ReleaseType = releaseType;
}
_blocklistRepository.Insert(blocklist);
}