Implement torrentbytes

This commit is contained in:
KZ
2015-07-30 21:09:38 +01:00
parent 922583ea5d
commit 1606e3379f
8 changed files with 217 additions and 2 deletions

View File

@@ -128,7 +128,7 @@ namespace Jackett.Indexers
if (queryCollection.Count > 0)
{
searchUrl += "?" + string.Join("&", queryCollection.AllKeys.Select(a => a + "=" + HttpUtility.UrlEncode(queryCollection[a])));
searchUrl += "?" + queryCollection.GetQueryString();
}
var response = await RequestStringWithCookiesAndRetry(searchUrl, null, BrowseUrl);