mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-23 04:03:05 +00:00
add unmatch
This commit is contained in:
parent
d7856e52ee
commit
577c68ac7d
1 changed files with 5 additions and 0 deletions
|
@ -493,6 +493,11 @@ class Playable(object):
|
|||
key = '%s/split' % self.key
|
||||
return self._server.query(key, method=self._server._session.put)
|
||||
|
||||
def unmatch(self):
|
||||
"""Unmatch a media file."""
|
||||
key = '%s/unmatch' % self.key
|
||||
return self._server.query(key, method=self._server._session.put)
|
||||
|
||||
def play(self, client):
|
||||
""" Start playback on the specified client.
|
||||
|
||||
|
|
Loading…
Reference in a new issue