mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-30 08:40:48 +02:00
Fixed: Syncing Newznab indexers with expired VIP expiration dates to apps
This commit is contained in:
parent
f066cf399d
commit
a23d792781
1 changed files with 2 additions and 1 deletions
|
|
@ -42,7 +42,8 @@ public NewznabSettingsValidator()
|
|||
|
||||
RuleFor(c => c.VipExpiration).Must(c => c.IsFutureDate())
|
||||
.When(c => c.VipExpiration.IsNotNullOrWhiteSpace())
|
||||
.WithMessage("Must be a future date");
|
||||
.WithMessage("Must be a future date")
|
||||
.AsWarning();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue