From ecbe45c10863d4b541581676c6327b80b30297af Mon Sep 17 00:00:00 2001 From: jcorporation Date: Sun, 15 Dec 2024 20:47:25 +0100 Subject: [PATCH] Fix mpd_send_sticker_dec --- src/sticker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sticker.c b/src/sticker.c index 1dc806b..72a7095 100644 --- a/src/sticker.c +++ b/src/sticker.c @@ -55,7 +55,7 @@ bool mpd_send_sticker_dec(struct mpd_connection *connection, const char *type, const char *uri, const char *name, unsigned value) { - return mpd_send_s_s_s_s_u_command(connection, "sticker", "inc", + return mpd_send_s_s_s_s_u_command(connection, "sticker", "dec", type, uri, name, value); }