mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Syncing Newznab indexers with expired VIP expiration dates to apps
This commit is contained in:
@@ -42,7 +42,8 @@ namespace NzbDrone.Core.Indexers.Newznab
|
|||||||
|
|
||||||
RuleFor(c => c.VipExpiration).Must(c => c.IsFutureDate())
|
RuleFor(c => c.VipExpiration).Must(c => c.IsFutureDate())
|
||||||
.When(c => c.VipExpiration.IsNotNullOrWhiteSpace())
|
.When(c => c.VipExpiration.IsNotNullOrWhiteSpace())
|
||||||
.WithMessage("Must be a future date");
|
.WithMessage("Must be a future date")
|
||||||
|
.AsWarning();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user