Skip to content

Commit c1efa6f

Browse files
committed
Lax missing protocol abilities. If its missing does not mean i dont work.
1 parent 14844ee commit c1efa6f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plexapi/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,9 @@ def sendCommand(self, command, proxy=None, **params):
182182
command = command.strip('/')
183183
controller = command.split('/')[0]
184184
if controller not in self.protocolCapabilities:
185-
raise Unsupported('Client %s doesnt support %s controller.' % (self.title, controller))
185+
log.debug('Client %s doesnt support %s controller.'
186+
'What your trying might not work' % (self.title, controller))
187+
186188
params['commandID'] = self._nextCommandId()
187189
key = '/player/%s%s' % (command, utils.joinArgs(params))
188190
headers = {'X-Plex-Target-Client-Identifier': self.machineIdentifier}

0 commit comments

Comments
 (0)