mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-25 13:10:17 +00:00
Workaround for Android TV client commands
This commit is contained in:
parent
1709868665
commit
6d4ae35339
1 changed files with 4 additions and 1 deletions
|
@ -205,7 +205,10 @@ class PlexClient(PlexObject):
|
|||
except ElementTree.ParseError:
|
||||
# Workaround for players which don't return valid XML on successful commands
|
||||
# - Plexamp: `b'OK'`
|
||||
if self.product in ('Plexamp',):
|
||||
if self.product in (
|
||||
'Plexamp',
|
||||
'Plex for Android (TV)',
|
||||
):
|
||||
return
|
||||
raise
|
||||
|
||||
|
|
Loading…
Reference in a new issue