From 2079192f0b3e489799e7ec58ad63ce05309d39bc Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Thu, 31 Oct 2024 05:20:25 +1300 Subject: [PATCH] avistaztracker: update account inactivity info. resolves #15679 --- .../IndexerConfig/Bespoke/ConfigurationDataAvistazTracker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAvistazTracker.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAvistazTracker.cs index e96a77b9c..cebfd679a 100644 --- a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAvistazTracker.cs +++ b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAvistazTracker.cs @@ -12,7 +12,7 @@ namespace Jackett.Common.Models.IndexerConfig.Bespoke : base("You have to check 'Enable RSS Feed' in 'My Account', without this configuration the torrent download does not work.
You can find the PID in 'My profile'.") { Freeleech = new BoolConfigurationItem("Search freeleech only") { Value = false }; - AccountActivity = 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. Do not rely on inactivity emails, admins often do not send them."); + AccountActivity = new DisplayInfoConfigurationItem("Account Inactivity", "To avoid account deletion you must login at least 1 time every 60 days, and you must download at least 1 torrent every 90 days. Simply keeping torrents seeding long term will not protect your account. Do not rely on inactivity emails, we often do not send them."); } } }