diff --git a/src/NzbDrone.Core/Indexers/Definitions/BeyondHD.cs b/src/NzbDrone.Core/Indexers/Definitions/BeyondHD.cs index 45c8344e5..f9194f00a 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/BeyondHD.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/BeyondHD.cs @@ -326,8 +326,8 @@ namespace NzbDrone.Core.Indexers.Definitions { public BeyondHDSettingsValidator() { - RuleFor(c => c.ApiKey).NotEmpty(); - RuleFor(c => c.RssKey).NotEmpty(); + RuleFor(c => c.ApiKey).NotEmpty().Length(32); + RuleFor(c => c.RssKey).NotEmpty().Length(32); } }