mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
fix_missing_array_wrapper
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user