1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-09 00:46:19 +00:00

fix for issue 71

This commit is contained in:
Eric Garnier 2020-12-19 17:48:42 +01:00
parent 02dfd192cb
commit 7bd0fdaf19

View File

@ -153,6 +153,10 @@ namespace CryptoExchange.Net.Sockets
if (pendingRequest.Check(tokenData))
{
pendingRequests.Remove(pendingRequest);
if (pendingRequest.Result == null)
{
continue; // A previous timeout.
}
if (!socketClient.ContinueOnQueryResponse)
return;
handledResponse = true;