- Undid the check for data, I don't believe the `receiveTExt()` blocks forever?, We will Have to see
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-04 17:42:14 +02:00
parent 617a4507cc
commit f7ec2321b6

View File

@ -171,11 +171,6 @@ public class Connection : Fiber
* thrown * thrown
*/ */
while(socket.connected() && !hadError) while(socket.connected() && !hadError)
{
/**
* Check if there is data received and then process it
*/
if(socket.dataAvailableForRead())
{ {
/* The received data */ /* The received data */
string data; string data;
@ -203,7 +198,7 @@ public class Connection : Fiber
{ {
logger.error("Error in handler"); logger.error("Error in handler");
} }
}