hdtorrents: remove . from keywords. resolves #12654 (#12658)

This commit is contained in:
ilike2burnthing
2021-12-08 16:41:03 +00:00
committed by GitHub
parent 025baf450b
commit e346b0cf8f

View File

@@ -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