From 0bc8b4a32275fa5119ac303bc1ad877b66d2dd8a Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Sat, 14 Mar 2026 19:53:18 +1300 Subject: [PATCH] Suppress recv error --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 7fd6049..7481249 100644 --- a/src/Client.php +++ b/src/Client.php @@ -407,7 +407,7 @@ private function receive(): stdClass|array|int $sleepTime = 100; do { - $chunk = $this->client->recv(); + $chunk = @$this->client->recv(); if ($chunk === false || $chunk === '') { $attempts++;