From 0f5cbbbe209849a470fc2792902bac3cfdd1973e Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Mon, 4 Mar 2024 19:36:07 +1300 Subject: [PATCH] xspeeds: add activity info to config this completed my contributions to private sites inactivity survey --- src/Jackett.Common/Indexers/XSpeeds.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Jackett.Common/Indexers/XSpeeds.cs b/src/Jackett.Common/Indexers/XSpeeds.cs index ac45588a0..34321a096 100644 --- a/src/Jackett.Common/Indexers/XSpeeds.cs +++ b/src/Jackett.Common/Indexers/XSpeeds.cs @@ -70,6 +70,7 @@ namespace Jackett.Common.Indexers configData.AddDynamic("orderrequestedfromsite", orderSelect); configData.AddDynamic("freeleech", new BoolConfigurationItem("Filter freeleech only") { Value = false }); + configData.AddDynamic("Account Inactivity", new DisplayInfoConfigurationItem("Account Inactivity", "Accounts with no activity for 30 days will automatically be deleted. Note: The activity has to be a login on site, meaning that download client, IRC and Discord are NOT counted as site activity. If you have to be away from site for a prolonged time, you can park your account up to 60 days in the User CP area.")); } private TorznabCapabilities SetCapabilities()