From 43eb5f9656e31a7e8f89dfc6557101f5b4981282 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Mon, 4 Mar 2024 06:04:20 +1300 Subject: [PATCH] retroflix: add activity info to config --- src/Jackett.Common/Indexers/RetroFlix.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Jackett.Common/Indexers/RetroFlix.cs b/src/Jackett.Common/Indexers/RetroFlix.cs index a10a21e80..05ab7f1bd 100644 --- a/src/Jackett.Common/Indexers/RetroFlix.cs +++ b/src/Jackett.Common/Indexers/RetroFlix.cs @@ -4,6 +4,7 @@ using Jackett.Common.Indexers.Abstract; using Jackett.Common.Models; using Jackett.Common.Services.Interfaces; using NLog; +using static Jackett.Common.Models.IndexerConfig.ConfigurationData; using WebClient = Jackett.Common.Utils.Clients.WebClient; namespace Jackett.Common.Indexers @@ -36,6 +37,7 @@ namespace Jackett.Common.Indexers { // requestDelay for API Limit (1 request per 2 seconds) webclient.requestDelay = 2.1; + configData.AddDynamic("Account Inactivity", new DisplayInfoConfigurationItem("Account Inactivity", "Any account not logged into after 150 days will be deleted. Parked accounts will be deleted after 150 days of inactivity.")); } private TorznabCapabilities SetCapabilities()