From e346b0cf8ffd8bdf25281f862de7a82c9dd03598 Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Wed, 8 Dec 2021 16:41:03 +0000 Subject: [PATCH] hdtorrents: remove . from keywords. resolves #12654 (#12658) --- src/Jackett.Common/Indexers/HDTorrents.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Jackett.Common/Indexers/HDTorrents.cs b/src/Jackett.Common/Indexers/HDTorrents.cs index 1f4d1613a..79d5b9af2 100644 --- a/src/Jackett.Common/Indexers/HDTorrents.cs +++ b/src/Jackett.Common/Indexers/HDTorrents.cs @@ -146,8 +146,8 @@ namespace Jackett.Common.Indexers {"options", "0"} }; - // manually url encode parenthesis to prevent "hacking" detection - searchUrl += queryCollection.GetQueryString().Replace("(", "%28").Replace(")", "%29"); + // manually url encode parenthesis to prevent "hacking" detection, remove . as not used in titles + searchUrl += queryCollection.GetQueryString().Replace("(", "%28").Replace(")", "%29").Replace(".", " "); var results = await RequestWithCookiesAndRetryAsync(searchUrl); try