From e34fa9f0adb0a60b414c03834b04aca2f104e202 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Sun, 3 Mar 2024 20:07:26 +1300 Subject: [PATCH] privatehd: add activity info to config --- src/Jackett.Common/Indexers/PrivateHD.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Jackett.Common/Indexers/PrivateHD.cs b/src/Jackett.Common/Indexers/PrivateHD.cs index 7cc0943c5..2e8eea84c 100644 --- a/src/Jackett.Common/Indexers/PrivateHD.cs +++ b/src/Jackett.Common/Indexers/PrivateHD.cs @@ -5,6 +5,7 @@ using Jackett.Common.Models; using Jackett.Common.Services.Interfaces; using Jackett.Common.Utils.Clients; using NLog; +using static Jackett.Common.Models.IndexerConfig.ConfigurationData; namespace Jackett.Common.Indexers { @@ -27,6 +28,7 @@ namespace Jackett.Common.Indexers cs: cs ) { + configData.AddDynamic("Account Inactivity", new DisplayInfoConfigurationItem("Account Inactivity", "To avoid account deletion you must login at least 1 time every 90 days, and you must download at least 1 torrent every 6 months. Simply keeping torrents seeding long term will not protect your account")); } private TorznabCapabilities SetCapabilities()