diff --git a/mopidy/mpd/frontend.py b/mopidy/mpd/frontend.py index 7a402ebe..55cbfeeb 100644 --- a/mopidy/mpd/frontend.py +++ b/mopidy/mpd/frontend.py @@ -577,6 +577,8 @@ class MpdFrontend(object): r'"(?P[^"]+)"$') @handle_pattern(r'^find "(?P(album|artist|title))" ' r'"(?P[^"]+)"$') + @handle_pattern(r'^find (?P(album)) ' + r'"(?P[^"]+)" artist "([^"]+)"$') def _music_db_find(self, type, what): """ *musicpd.org, music database section:* @@ -589,6 +591,8 @@ class MpdFrontend(object): *GMPC:* - does not add quotes around the type argument. + - also uses ``find album "[ALBUM]" artist "[ARTIST]"`` to list album + tracks. *ncmpc:*