From 1ae1177d0114e7ec6483d376b0930c0b58b0b763 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Mon, 4 Mar 2024 14:49:29 +1300 Subject: [PATCH] torrentnetwork: add activity info to config --- src/Jackett.Common/Indexers/TorrentNetwork.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Jackett.Common/Indexers/TorrentNetwork.cs b/src/Jackett.Common/Indexers/TorrentNetwork.cs index c71cf3610..259ab878a 100644 --- a/src/Jackett.Common/Indexers/TorrentNetwork.cs +++ b/src/Jackett.Common/Indexers/TorrentNetwork.cs @@ -53,6 +53,7 @@ namespace Jackett.Common.Indexers configData.AddDynamic("token", new HiddenStringConfigurationItem("token")); configData.AddDynamic("passkey", new HiddenStringConfigurationItem("passkey")); configData.AddDynamic("freeleech", new BoolConfigurationItem("Filter freeleech only") { Value = false }); + configData.AddDynamic("Account Inactivity", new DisplayInfoConfigurationItem("Account Inactivity", "After four weeks of inactivity (six weeks for power users) your account will be deleted (= finally and irrevocably removed from the database). To avoid deletion, you can park your account. Running torrents do not count as active, only logging in counts!!!")); } private TorznabCapabilities SetCapabilities()