1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-17 21:17:50 +02:00

Add digits to Deluge's category validator

This commit is contained in:
Rhys Braunschweig 2019-09-04 14:53:29 +02:00 committed by Taloth
parent 0f6da1873e
commit 3fa3c45794

View File

@ -12,8 +12,8 @@ namespace NzbDrone.Core.Download.Clients.Deluge
RuleFor(c => c.Host).ValidHost();
RuleFor(c => c.Port).InclusiveBetween(1, 65535);
RuleFor(c => c.TvCategory).Matches("^[-a-z]*$").WithMessage("Allowed characters a-z and -");
RuleFor(c => c.TvImportedCategory).Matches("^[-a-z]*$").WithMessage("Allowed characters a-z and -");
RuleFor(c => c.TvCategory).Matches("^[-a-z0-9]*$").WithMessage("Allowed characters a-z, 0-9 and -");
RuleFor(c => c.TvImportedCategory).Matches("^[-a-z0-9]*$").WithMessage("Allowed characters a-z, 0-9 and -");
}
}