fix_missing_array_wrapper

This commit is contained in:
Tim Fry
2025-10-25 19:00:17 -03:00
parent f7eea91ee0
commit 9c96c19ea2
2 changed files with 5 additions and 5 deletions

View File

@@ -135,7 +135,7 @@ abstract class base_websocket_system_service extends service implements websocke
if ($this->ws_client !== null && $this->ws_client->is_connected()) {
// Combine the websocket client and the listeners into a single array
$read = array_merge($listeners, $this->ws_client->socket());
$read = array_merge($listeners, [$this->ws_client->socket()]);
// Reset the suppress message flag
$suppress_ws_message = false;
}