summaryrefslogtreecommitdiff
path: root/nephilim/mpclient.py
diff options
context:
space:
mode:
Diffstat (limited to 'nephilim/mpclient.py')
-rw-r--r--nephilim/mpclient.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/nephilim/mpclient.py b/nephilim/mpclient.py
index dc4a131..fa5fd3c 100644
--- a/nephilim/mpclient.py
+++ b/nephilim/mpclient.py
@@ -161,6 +161,10 @@ class MPClient(QtCore.QObject):
if not self.__check_command_ok('find'):
return []
return self._array_to_song_array(self._client.find(*args))
+ def findadd(self, *args):
+ if not self.__check_command_ok('findadd'):
+ return
+ return self._client.findadd(*args)
def update_db(self, paths = None):
"""Starts MPD database update."""