diff --git a/src/NzbDrone.Core/Indexers/IPTorrents/IPTorrentsSettings.cs b/src/NzbDrone.Core/Indexers/IPTorrents/IPTorrentsSettings.cs index ef7884145..27d902f6e 100644 --- a/src/NzbDrone.Core/Indexers/IPTorrents/IPTorrentsSettings.cs +++ b/src/NzbDrone.Core/Indexers/IPTorrents/IPTorrentsSettings.cs @@ -16,8 +16,8 @@ public IPTorrentsSettingsValidator() RuleFor(c => c.Url).Matches(@"/rss\?.+$"); - RuleFor(c => c.Url).Matches(@"/rss\?.+;download$") - .WithMessage("Use Direct Download Url") + RuleFor(c => c.Url).Matches(@"/rss\?.+;download(?:;|$)") + .WithMessage("Use Direct Download Url (;download)") .When(v => v.Url.IsNotNullOrWhiteSpace() && Regex.IsMatch(v.Url, @"/rss\?.+$")); } } @@ -38,4 +38,4 @@ public NzbDroneValidationResult Validate() return new NzbDroneValidationResult(Validator.Validate(this)); } } -} \ No newline at end of file +}