Fixed: (HDTorrents) Remove . from searches

This commit is contained in:
PearsonFlyer 2021-12-08 15:26:46 -05:00 committed by GitHub
parent 9e7af8369e
commit 6ca708f523
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -158,7 +158,7 @@ private IEnumerable<IndexerRequest> GetPagedRequests(string term, int[] categori
};
// manually url encode parenthesis to prevent "hacking" detection
searchUrl += queryCollection.GetQueryString().Replace("(", "%28").Replace(")", "%29");
searchUrl += queryCollection.GetQueryString().Replace("(", "%28").Replace(")", "%29").Replace(".", " ");
var request = new IndexerRequest(searchUrl, HttpAccept.Rss);