dcd.common.messages: Fix spurious "Could not unpack the response" errors (#573)
dcd.common.messages: Fix spurious "Could not unpack the response" errors merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
parent
5b9780562a
commit
0f998365eb
|
@ -220,7 +220,7 @@ AutocompleteResponse getResponse(Socket socket)
|
||||||
if (bytesReceived == 0)
|
if (bytesReceived == 0)
|
||||||
break;
|
break;
|
||||||
unpacker.feed(buffer[0..bytesReceived]);
|
unpacker.feed(buffer[0..bytesReceived]);
|
||||||
} while (bytesReceived == buffer.length);
|
} while (true);
|
||||||
|
|
||||||
if (unpacker.size == 0)
|
if (unpacker.size == 0)
|
||||||
throw new Exception("Server closed the connection, 0 bytes received");
|
throw new Exception("Server closed the connection, 0 bytes received");
|
||||||
|
|
Loading…
Reference in New Issue