mirror of
https://github.com/owntone/owntone-server.git
synced 2025-02-05 10:48:09 -05:00
[mpd] Notify mpd clients on library update events
This commit is contained in:
parent
f81d33701b
commit
ae446046f5
@ -607,6 +607,10 @@ mpd_command_idle(struct evbuffer *evbuf, int argc, char **argv, char **errmsg)
|
|||||||
{
|
{
|
||||||
client->events |= LISTENER_DATABASE;
|
client->events |= LISTENER_DATABASE;
|
||||||
}
|
}
|
||||||
|
else if (0 == strcmp(argv[i], "update"))
|
||||||
|
{
|
||||||
|
client->events |= LISTENER_UPDATE;
|
||||||
|
}
|
||||||
else if (0 == strcmp(argv[i], "player"))
|
else if (0 == strcmp(argv[i], "player"))
|
||||||
{
|
{
|
||||||
client->events |= LISTENER_PLAYER;
|
client->events |= LISTENER_PLAYER;
|
||||||
@ -638,7 +642,7 @@ mpd_command_idle(struct evbuffer *evbuf, int argc, char **argv, char **errmsg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
client->events = LISTENER_PLAYER | LISTENER_QUEUE | LISTENER_VOLUME | LISTENER_SPEAKER | LISTENER_OPTIONS;
|
client->events = LISTENER_PLAYER | LISTENER_QUEUE | LISTENER_VOLUME | LISTENER_SPEAKER | LISTENER_OPTIONS | LISTENER_DATABASE | LISTENER_UPDATE | LISTENER_STORED_PLAYLIST;
|
||||||
|
|
||||||
idle_clients = client;
|
idle_clients = client;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user