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:
committed by
Mark McDowall
parent
c99d81e79b
commit
f8a0751775
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user