mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-19 20:14:18 -04:00
[httpd] Fix infinite loop with more than one ws connection
This commit is contained in:
parent
c2ad43da93
commit
a2d56df416
@ -195,7 +195,7 @@ ws_listener_cb(void *arg, int *ret)
|
||||
char *reply = NULL;
|
||||
short *event_mask = arg;
|
||||
|
||||
for (client = ws_clients; client; client = ws_clients->next)
|
||||
for (client = ws_clients; client; client = client->next)
|
||||
{
|
||||
reply = ws_create_notify_reply(*event_mask, &client->requested_events);
|
||||
evws_send_text(client->evws, reply);
|
||||
|
Loading…
x
Reference in New Issue
Block a user