diff --git a/Client.cpp b/Client.cpp index 8541099..4a08455 100644 --- a/Client.cpp +++ b/Client.cpp @@ -85,9 +85,6 @@ basiccoro::AwaitableTask Client::ask(std::string_view prompt, const // End if zero if (len == 0xFF) break; - // Skip empty token - if (len == 0) continue; - // Receive response const auto token = co_await connection->read(len); if (token.empty()) {