From f51c79f59f12e1c167950261aaeddb8c93db37d4 Mon Sep 17 00:00:00 2001 From: kaliko Date: Sun, 1 Sep 2024 19:27:18 +0200 Subject: [PATCH] Add stickernames command --- doc/source/commands.rst | 1 + mpdaio/client.py | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/source/commands.rst b/doc/source/commands.rst index 03d0b07..2bf131d 100644 --- a/doc/source/commands.rst +++ b/doc/source/commands.rst @@ -109,6 +109,7 @@ Sticker Commands * sticker delete * sticker list * sticker find +* stickernames Connection Commands ^^^^^^^^^^^^^^^^^^^ diff --git a/mpdaio/client.py b/mpdaio/client.py index 2eeebc1..651cfb8 100644 --- a/mpdaio/client.py +++ b/mpdaio/client.py @@ -231,6 +231,7 @@ class CmdHandler: "sticker delete": self._fetch_nothing, "sticker list": self._fetch_list, "sticker find": self._fetch_songs, + "stickernames": self._fetch_list, # Connection Commands "close": None, "kill": None, -- 2.39.5