mirror of
https://github.com/Radarr/Radarr
synced 2025-12-19 23:03:56 +01:00
Fixed: Validation of dot prefix in Transmission category.
This commit is contained in:
parent
d8852d840b
commit
f5f050f80b
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ public TransmissionSettingsValidator()
|
|||
RuleFor(c => c.Host).NotEmpty();
|
||||
RuleFor(c => c.Port).GreaterThan(0);
|
||||
|
||||
RuleFor(c => c.TvCategory).Matches("^[-a-z]*$").WithMessage("Allowed characters a-z and -");
|
||||
RuleFor(c => c.TvCategory).Matches(@"^\.?[-a-z]*$").WithMessage("Allowed characters a-z and -");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue