From: Kaliko Jack Date: Wed, 9 Dec 2020 11:04:03 +0000 (+0100) Subject: Add getfingerprint command X-Git-Tag: v0.5.0~3 X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=commitdiff_plain;h=e3e71de3b46e62a2bf6575c11dc8fe856e340bc4 Add getfingerprint command --- diff --git a/CHANGES.txt b/CHANGES.txt index bf0cdce..7a1fa44 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,6 +5,7 @@ Changes in 0.#.# UNRELEASED ---------------------------- * Add readpicture command +* Add getfingerprint command * Update host and port attributes when reconnecting * Fixed albumart diff --git a/musicpd.py b/musicpd.py index 008d9d8..6157c10 100644 --- a/musicpd.py +++ b/musicpd.py @@ -225,6 +225,7 @@ class MPDClient: # Database Commands "albumart": self._fetch_composite, "count": self._fetch_object, + "getfingerprint": self._fetch_object, "find": self._fetch_songs, "findadd": self._fetch_nothing, "list": self._fetch_list,