mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
Ensure drone factory runs on its specificed interval (#1067)
* Ensure drone factory runs on its specificed interval * Fix the tests for DownloadedMovieImportServiceFixture
This commit is contained in:
@@ -12,13 +12,13 @@ namespace NzbDrone.Api.Config
|
||||
MappedNetworkDriveValidator mappedNetworkDriveValidator)
|
||||
: base(configService)
|
||||
{
|
||||
SharedValidator.RuleFor(c => c.DownloadedEpisodesFolder)
|
||||
SharedValidator.RuleFor(c => c.DownloadedMoviesFolder)
|
||||
.Cascade(CascadeMode.StopOnFirstFailure)
|
||||
.IsValidPath()
|
||||
.SetValidator(rootFolderValidator)
|
||||
.SetValidator(mappedNetworkDriveValidator)
|
||||
.SetValidator(pathExistsValidator)
|
||||
.When(c => !string.IsNullOrWhiteSpace(c.DownloadedEpisodesFolder));
|
||||
.When(c => !string.IsNullOrWhiteSpace(c.DownloadedMoviesFolder));
|
||||
}
|
||||
|
||||
protected override DownloadClientConfigResource ToResource(IConfigService model)
|
||||
|
||||
Reference in New Issue
Block a user