mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
MoreThanTV Decode Response
MoreThanTV Decode Response to fix issue https://github.com/zone117x/Jackett/issues/235
This commit is contained in:
@@ -100,7 +100,8 @@ namespace Jackett.Indexers
|
|||||||
|
|
||||||
try
|
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"])
|
foreach (JObject r in json["response"]["results"])
|
||||||
{
|
{
|
||||||
DateTime pubDate = DateTime.MinValue;
|
DateTime pubDate = DateTime.MinValue;
|
||||||
|
Reference in New Issue
Block a user