We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7856e5 commit 577c68aCopy full SHA for 577c68a
plexapi/base.py
@@ -493,6 +493,11 @@ def split(self):
493
key = '%s/split' % self.key
494
return self._server.query(key, method=self._server._session.put)
495
496
+ def unmatch(self):
497
+ """Unmatch a media file."""
498
+ key = '%s/unmatch' % self.key
499
+ return self._server.query(key, method=self._server._session.put)
500
+
501
def play(self, client):
502
""" Start playback on the specified client.
503
0 commit comments