New: Release Group Custom Format (#7154)
parent
93b2395228
commit
bd85936a62
@ -0,0 +1,16 @@
|
||||
using NzbDrone.Core.Parser.Model;
|
||||
|
||||
namespace NzbDrone.Core.CustomFormats
|
||||
{
|
||||
public class ReleaseGroupSpecification : RegexSpecificationBase
|
||||
{
|
||||
public override int Order => 9;
|
||||
public override string ImplementationName => "Release Group";
|
||||
public override string InfoLink => "https://wiki.servarr.com/radarr/settings#custom-formats-2";
|
||||
|
||||
protected override bool IsSatisfiedByWithoutNegate(ParsedMovieInfo movieInfo)
|
||||
{
|
||||
return MatchString(movieInfo?.ReleaseGroup);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue