Fixed: Syncing Newznab indexers with expired VIP expiration dates to apps

This commit is contained in:
Bogdan
2024-12-07 12:10:45 +02:00
parent f066cf399d
commit a23d792781

View File

@@ -42,7 +42,8 @@ namespace NzbDrone.Core.Indexers.Newznab
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();
}
}