Fixed: TV Directory is not required for local rTorrent

pull/3113/head
Mark McDowall 9 years ago
parent c63b65eba1
commit 0c7d8c2d38

@ -1,5 +1,6 @@
using FluentValidation;
using FluentValidation.Results;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.Download.Clients.RTorrent;
using NzbDrone.Core.Validation.Paths;
@ -23,6 +24,7 @@ namespace NzbDrone.Core.Download.Clients.rTorrent
.SetValidator(droneFactoryValidator)
.SetValidator(mappedNetworkDriveValidator)
.SetValidator(pathExistsValidator)
.When(c => c.TvDirectory.IsNotNullOrWhiteSpace())
.When(c => c.Host == "localhost" || c.Host == "127.0.0.1");
}
}

Loading…
Cancel
Save