Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/ExchangeSharp/API/Exchanges/KuCoin/ExchangeKuCoinAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,21 @@ public override string PeriodSecondsToString(int seconds)
}
}

protected override JToken CheckJsonResponse(JToken result)
{
if (result == null)
{
throw new APIException("No result from server");
}

if (!string.IsNullOrWhiteSpace(result["msg"].ToStringInvariant()))
{
throw new APIException(result.ToStringInvariant());
}

return base.CheckJsonResponse(result);
}

#region ProcessRequest

protected override async Task ProcessRequestAsync(IHttpWebRequest request, Dictionary<string, object> payload)
Expand Down