mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 22:24:12 +00:00
Lax missing protocol abilities. If its missing does not mean i dont work.
This commit is contained in:
parent
14844eed96
commit
c1efa6f9c3
1 changed files with 3 additions and 1 deletions
|
@ -182,7 +182,9 @@ class PlexClient(PlexObject):
|
|||
command = command.strip('/')
|
||||
controller = command.split('/')[0]
|
||||
if controller not in self.protocolCapabilities:
|
||||
raise Unsupported('Client %s doesnt support %s controller.' % (self.title, controller))
|
||||
log.debug('Client %s doesnt support %s controller.'
|
||||
'What your trying might not work' % (self.title, controller))
|
||||
|
||||
params['commandID'] = self._nextCommandId()
|
||||
key = '/player/%s%s' % (command, utils.joinArgs(params))
|
||||
headers = {'X-Plex-Target-Client-Identifier': self.machineIdentifier}
|
||||
|
|
Loading…
Reference in a new issue