mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
YTS: handle error messages
This commit is contained in:
@@ -112,7 +112,11 @@ namespace Jackett.Common.Indexers
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var jsonContent = JObject.Parse(response.Content);
|
// returned content might start with an html error message, remove it first
|
||||||
|
var jsonStart = response.Content.IndexOf('{');
|
||||||
|
var jsonContentStr = response.Content.Remove(0, jsonStart);
|
||||||
|
|
||||||
|
var jsonContent = JObject.Parse(jsonContentStr);
|
||||||
|
|
||||||
string result = jsonContent.Value<string>("status");
|
string result = jsonContent.Value<string>("status");
|
||||||
if (result != "ok") // query was not successful
|
if (result != "ok") // query was not successful
|
||||||
|
Reference in New Issue
Block a user