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

View File

@@ -158,7 +158,7 @@ namespace NzbDrone.Core.Indexers.Definitions
};
// 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);