Merge pull request #90741 from yorickdewid/patch-1

Fix missing return in `StreamPeerTCP::poll` when connection is `STATUS_CONNECTED`
This commit is contained in:
Rémi Verschelde 2024-04-16 13:31:03 +02:00
commit 0ae1dcc3d2
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -51,6 +51,7 @@ Error StreamPeerTCP::poll() {
status = STATUS_ERROR;
return err;
}
return OK;
} else if (status != STATUS_CONNECTING) {
return OK;
}