Fixed: Require PID for AvistaZ indexers

This commit is contained in:
Qstick 2021-06-21 23:18:53 -04:00
parent 7f6fa2efbe
commit 7fb6c539d4

View file

@ -11,6 +11,7 @@ public AvistazSettingsValidator()
{
RuleFor(c => c.Username).NotEmpty();
RuleFor(c => c.Password).NotEmpty();
RuleFor(c => c.Pid).NotEmpty();
}
}