From 4da8e1dba335a9a592dca801dacf7180caa9c98b Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Mon, 2 Sep 2024 00:21:02 +0100 Subject: [PATCH] bakabt: minor updates --- src/Jackett.Common/Indexers/Definitions/BakaBT.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Jackett.Common/Indexers/Definitions/BakaBT.cs b/src/Jackett.Common/Indexers/Definitions/BakaBT.cs index ef32474cf..d98060e84 100644 --- a/src/Jackett.Common/Indexers/Definitions/BakaBT.cs +++ b/src/Jackett.Common/Indexers/Definitions/BakaBT.cs @@ -51,8 +51,9 @@ namespace Jackett.Common.Indexers.Definitions logger: l, p: ps, cacheService: cs, - configData: new ConfigurationDataBakaBT("To prevent 0-results-error, Enable the Show-Adult-Content option in your BakaBT account Settings.")) + configData: new ConfigurationDataBakaBT("To show more results and prevent a 0 results error, go to your BakaBT account settings and in the 'Browse' section enable the 'Show Adult Content' option and change 'Torrents per page' to '100'.")) { + configData.AddDynamic("Account Inactivity", new DisplayInfoConfigurationItem("Account Inactivity", "Accounts are pruned after 11 months of disuse (i.e. not logging into the tracker account). Accounts with 0 download and 0 upload are pruned earlier. Donator accounts (people who've donated to BakaBT and received a donator status) have the option of disabling inactivity pruning, and safeguarding their account for as long as they choose.")); } private TorznabCapabilities SetCapabilities() @@ -237,8 +238,7 @@ namespace Jackett.Common.Indexers.Definitions release.Seeders = int.Parse(row.QuerySelectorAll(".peers a")[0].TextContent); release.Peers = release.Seeders + int.Parse(row.QuerySelectorAll(".peers a")[1].TextContent); - release.MinimumRatio = 1; - release.MinimumSeedTime = 172800; // 48 hours + release.MinimumRatio = 0.5; var size = row.QuerySelector(".size").TextContent; release.Size = ParseUtil.GetBytes(size);