Skip to content

Commit

Permalink
Workaround for Android TV client commands
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlawren committed Oct 25, 2019
1 parent 1709868 commit 6d4ae35
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plexapi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,10 @@ def sendCommand(self, command, proxy=None, **params):
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

Expand Down

0 comments on commit 6d4ae35

Please sign in to comment.