We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48c5bef commit d277733Copy full SHA for d277733
src/ExchangeSharp/API/Exchanges/Huobi/ExchangeHuobiAPI.cs
@@ -251,6 +251,8 @@ protected override async Task<IWebSocket> OnGetTradesWebSocketAsync(Func<KeyValu
251
252
if (token["status"] != null)
253
{
254
+ if (token["status"].ToStringLowerInvariant() == "error")
255
+ Logger.Error($"Error in {this.GetType()}.{nameof(OnGetTradesWebSocketAsync)}: {token.ToStringInvariant()}");
256
return;
257
}
258
else if (token["ping"] != null)
0 commit comments