Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 8ff56b2

Browse files
authored
Merge pull request #19 from swooletw/develop
fix getFds function
2 parents b6be373 + 34d2e68 commit 8ff56b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Websocket/Websocket.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ protected function getFds()
300300
if (empty($clients) && is_numeric($room)) {
301301
$fds[] = $room;
302302
} else {
303-
$fds = array_merge($fds, $this->room->getClients($clients));
303+
$fds = array_merge($fds, $clients);
304304
}
305305
}
306306

0 commit comments

Comments
 (0)