This commit is contained in:
parent
3ef91c08da
commit
93af482c20
|
@ -265,7 +265,12 @@ namespace ProductClient
|
|||
}
|
||||
|
||||
var jObj = JObject.Parse(html);
|
||||
var r = JsonConvert.SerializeObject(jObj["Result"].Value<Object>());
|
||||
if (jObj["Result"] == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var r = JsonConvert.SerializeObject(jObj.Value<Object>());
|
||||
if (string.IsNullOrWhiteSpace(r))
|
||||
{
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue