From 48f70815a30b204b9d9f4e0739c5b79748c31e91 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 4 Aug 2015 15:13:57 -0700 Subject: [PATCH] Fixed: rTorrent category is optional Fixes: #726 --- src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs index 4b38fd73d..8574a7096 100644 --- a/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs +++ b/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentSettings.cs @@ -12,6 +12,8 @@ namespace NzbDrone.Core.Download.Clients.RTorrent RuleFor(c => c.Host).ValidHost(); RuleFor(c => c.Port).InclusiveBetween(0, 65535); RuleFor(c => c.TvCategory).NotEmpty(); + .WithMessage("A category is recommended") + .AsWarning(); } }