From b4aa7722394d8d6fae7d4969154d0aec904a5337 Mon Sep 17 00:00:00 2001 From: seeyabye Date: Sat, 10 Oct 2020 17:07:20 +0900 Subject: [PATCH] redacted: reverted from api to user based login (#9803) --- src/Jackett.Common/Indexers/Redacted.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Jackett.Common/Indexers/Redacted.cs b/src/Jackett.Common/Indexers/Redacted.cs index 6485e381a..bd391fe9c 100644 --- a/src/Jackett.Common/Indexers/Redacted.cs +++ b/src/Jackett.Common/Indexers/Redacted.cs @@ -13,7 +13,7 @@ namespace Jackett.Common.Indexers [ExcludeFromCodeCoverage] public class Redacted : GazelleTracker { - protected override string DownloadUrl => SiteLink + "ajax.php?action=download&usetoken=" + (useTokens ? "1" : "0") + "&id="; + protected override string DownloadUrl => SiteLink + "torrents.php?action=download&usetoken=" + (useTokens ? "1" : "0") + "&id="; public Redacted(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "redacted", @@ -29,9 +29,8 @@ namespace Jackett.Common.Indexers logger: l, p: ps, supportsFreeleechTokens: true, - has2Fa: false, - useApiKey: true, - instructionMessageOptional: "
  1. Go to Redacted's site and open your account settings.
  2. Go to Access Settings tab and copy the API Key.
  3. Ensure that you've checked Confirm API Key.
  4. Finally, click Save Profile.
" + has2Fa: true, + useApiKey: false ) { Language = "en-us";