Private GIT

Skip to content
Snippets Groups Projects
Commit 4c394d28 authored by Rotem's avatar Rotem Committed by vlbox
Browse files

Hebits: Fixed hebrew encoding (#2577)

parent fd5d7248
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Web;
using CsQuery;
using Jacket.Common.Helpers;
using Jackett.Models;
using Jackett.Models.IndexerConfig;
using Jackett.Services.Interfaces;
......@@ -86,9 +87,9 @@ namespace Jackett.Indexers
if (!string.IsNullOrWhiteSpace(searchString))
{
searchUrl += "&search=" + WebUtility.UrlEncode(searchString);
searchUrl += "&search=" + WebUtilityHelpers.UrlEncode(searchString, Encoding);
}
string.Format(SearchUrl, WebUtility.UrlEncode(searchString));
string.Format(SearchUrl, WebUtilityHelpers.UrlEncode(searchString, Encoding));
var cats = MapTorznabCapsToTrackers(query);
if (cats.Count > 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment