From 90334636dc965fac3f27216efc7c74bb73da4dab Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Wed, 18 Dec 2024 17:44:52 +1300 Subject: [PATCH] torrentdosfilmes: add flaresolverr config info --- src/Jackett.Common/Indexers/Definitions/TorrentDosFilmes.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Jackett.Common/Indexers/Definitions/TorrentDosFilmes.cs b/src/Jackett.Common/Indexers/Definitions/TorrentDosFilmes.cs index dbcefc597..fe14218ae 100644 --- a/src/Jackett.Common/Indexers/Definitions/TorrentDosFilmes.cs +++ b/src/Jackett.Common/Indexers/Definitions/TorrentDosFilmes.cs @@ -7,6 +7,7 @@ using AngleSharp.Html.Parser; using Jackett.Common.Extensions; using Jackett.Common.Indexers.Definitions.Abstract; using Jackett.Common.Models; +using Jackett.Common.Models.IndexerConfig; using Jackett.Common.Services.Interfaces; using Jackett.Common.Utils; using NLog; @@ -34,6 +35,10 @@ namespace Jackett.Common.Indexers.Definitions public TorrentDosFilmes(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps, ICacheService cs) : base(configService, wc, l, ps, cs) { + configData.AddDynamic( + "flaresolverr", + new ConfigurationData.DisplayInfoConfigurationItem("FlareSolverr", + "This site may use Cloudflare DDoS Protection, therefore Jackett requires FlareSolverr to access it.")); } public override IParseIndexerResponse GetParser() => new TorrentDosFilmesParser(webclient);