bb: remove . from keywords. #12689 (#12703)

This commit is contained in:
ilike2burnthing 2021-12-13 12:22:18 +00:00 committed by GitHub
parent 6fc7c62305
commit fbb1f15d70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -145,7 +145,8 @@ namespace Jackett.Common.Indexers
queryCollection.Add("filter_cat[" + cat + "]", "1");
}
request_urls.Add(SearchUrl + queryCollection.GetQueryString());
// remove . as not used in titles
request_urls.Add(SearchUrl + queryCollection.GetQueryString().Replace(".", " "));
}
var downloadTasksQuery = from url in request_urls select RequestWithCookiesAndRetryAsync(url);