From 3c99e5a35cc974d70147d71453361cbb3eefadad Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Thu, 12 Sep 2024 17:15:48 +0200 Subject: [PATCH] [mpd] Set protocol version back 0.20.0 Announcing 0.22.4 without supporting the newer protocol's filters breaks Rigelian --- src/mpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpd.c b/src/mpd.c index d7acdd70..50c02b7c 100644 --- a/src/mpd.c +++ b/src/mpd.c @@ -4615,7 +4615,7 @@ mpd_accept_conn_cb(struct evconnlistener *listener, * According to the mpd protocol send "OK MPD \n" to the client, where version is the version * of the supported mpd protocol and not the server version. */ - evbuffer_add(bufferevent_get_output(bev), "OK MPD 0.22.4\n", 14); + evbuffer_add(bufferevent_get_output(bev), "OK MPD 0.20.0\n", 14); client_ctx->evbuffer = bufferevent_get_output(bev); DPRINTF(E_INFO, L_MPD, "New mpd client connection accepted\n");