From 4da2cbfc16288955d0b327cc737a6d81794c6689 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Wed, 28 Feb 2024 09:13:55 +1300 Subject: [PATCH] myanonamouse: add activity info to config --- src/Jackett.Common/Indexers/MyAnonamouse.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Jackett.Common/Indexers/MyAnonamouse.cs b/src/Jackett.Common/Indexers/MyAnonamouse.cs index 279edd7bf..be902aff5 100644 --- a/src/Jackett.Common/Indexers/MyAnonamouse.cs +++ b/src/Jackett.Common/Indexers/MyAnonamouse.cs @@ -13,6 +13,7 @@ using Jackett.Common.Utils.Clients; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using NLog; +using static Jackett.Common.Models.IndexerConfig.ConfigurationData; namespace Jackett.Common.Indexers { @@ -44,6 +45,7 @@ namespace Jackett.Common.Indexers configData: new ConfigurationDataMyAnonamouse()) { webclient.EmulateBrowser = false; + configData.AddDynamic("Account Inactivity", new DisplayInfoConfigurationItem("Account Inactivity", "To prevent your account from being disabled for inactivity, you must log in on a regular basis. You must also use your account - if you do not, your account will be disabled. If you know that you will not be able to login for an extended period of time, you can park your account in your preferences and it will not be disabled.")); } private TorznabCapabilities SetCapabilities()