mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 15:42:48 +00:00
MoreThanTV Decode Response
MoreThanTV Decode Response to fix issue https://github.com/zone117x/Jackett/issues/235
This commit is contained in:
parent
058c12175d
commit
3a0d814903
1 changed files with 2 additions and 1 deletions
|
@ -100,7 +100,8 @@ namespace Jackett.Indexers
|
|||
|
||||
try
|
||||
{
|
||||
var json = JObject.Parse(response.Content);
|
||||
string decodedResponse = WebUtility.HtmlDecode(response.Content);
|
||||
var json = JObject.Parse(decodedResponse);
|
||||
foreach (JObject r in json["response"]["results"])
|
||||
{
|
||||
DateTime pubDate = DateTime.MinValue;
|
||||
|
|
Loading…
Reference in a new issue